diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dd831acc4..06c9d3ebb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,113 +33,380 @@ jobs: build_android: name: Build Android App if: github.event.pull_request.draft == false - runs-on: ubuntu-latest - timeout-minutes: 30 + runs-on: ubuntu-24.04 + timeout-minutes: 45 steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Set up JDK 15 - uses: actions/setup-java@v3 + - name: Free up disk space + run: | + echo "Before cleanup:" + df -h + sudo rm -rf /usr/share/dotnet + sudo rm -rf /opt/ghc + sudo rm -rf /usr/local/share/boost + sudo rm -rf "$AGENT_TOOLSDIRECTORY" + echo "After cleanup:" + df -h + + - name: Set up JDK 17 + uses: actions/setup-java@v4 with: distribution: zulu - java-version: 15.x + java-version: "17" + cache: gradle + + - name: Validate Java version + run: | + java -version + echo "JAVA_HOME=$JAVA_HOME" - - name: Setup Node + - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version: "22.x" + cache: npm + cache-dependency-path: | + packages/react-native-hms/package-lock.json + packages/react-native-hms/example/package-lock.json + packages/react-native-room-kit/package-lock.json + packages/react-native-room-kit/example/package-lock.json - - name: Install dependencies + - name: Display environment info run: | - cd packages/react-native-hms/ - npm install - cd example/ - npm install - cd ../../react-native-room-kit/ - npm install - cd example/ - npm install + echo "Node: $(node --version)" + echo "npm: $(npm --version)" + echo "Java: $(java -version 2>&1 | head -1)" + echo "Gradle: $(gradle --version 2>/dev/null | head -1 || echo 'Will use wrapper')" - - name: Publish Dry Run + - name: Cache Gradle dependencies + uses: actions/cache@v4 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + ${{ runner.os }}-gradle- + + - name: Cache Gradle build cache + uses: actions/cache@v4 + with: + path: | + packages/react-native-room-kit/example/android/.gradle + packages/react-native-room-kit/example/android/app/build + key: ${{ runner.os }}-gradle-build-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-gradle-build- + + - name: Cache Android NDK + uses: actions/cache@v4 + with: + path: | + ${{ env.ANDROID_HOME }}/ndk + key: ${{ runner.os }}-ndk-27.1.12297006 + restore-keys: | + ${{ runner.os }}-ndk- + + - name: Install dependencies (react-native-hms) + working-directory: packages/react-native-hms + run: | + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + continue-on-error: false + + - name: Install dependencies (react-native-hms/example) + working-directory: packages/react-native-hms/example run: | - cd packages/react-native-hms/ && npm publish --dry-run - cd ../react-native-room-kit/ && npm publish --dry-run + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + continue-on-error: false + + - name: Install dependencies (react-native-room-kit) + working-directory: packages/react-native-room-kit + run: | + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + continue-on-error: false + + - name: Install dependencies (react-native-room-kit/example) + working-directory: packages/react-native-room-kit/example + run: | + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + continue-on-error: false + + - name: Build and pack react-native-hms + working-directory: packages/react-native-hms + run: | + npm run prepack + npm pack + echo "HMS_PACKAGE=$(ls -t *.tgz | head -1)" >> $GITHUB_ENV + + - name: Link react-native-hms to room-kit + working-directory: packages/react-native-room-kit + run: | + npm install ../react-native-hms/${{ env.HMS_PACKAGE }} + npm run prepack + + - name: Publish Dry Run (react-native-hms) + working-directory: packages/react-native-hms + run: npm publish --dry-run + + - name: Publish Dry Run (react-native-room-kit) + working-directory: packages/react-native-room-kit + run: npm publish --dry-run - name: Make Gradlew Executable - run: cd packages/react-native-room-kit/example/android && chmod +x ./gradlew + working-directory: packages/react-native-room-kit/example/android + run: chmod +x ./gradlew + + - name: Validate Gradle wrapper + working-directory: packages/react-native-room-kit/example/android + run: ./gradlew --version - name: Build Android App + working-directory: packages/react-native-room-kit/example/android + run: | + ./gradlew assembleRelease \ + --no-daemon \ + --stacktrace \ + --info \ + -Dorg.gradle.jvmargs="-Xmx4096m -XX:MaxMetaspaceSize=1024m" \ + -Dorg.gradle.parallel=true \ + -Dorg.gradle.caching=true + + - name: Verify APK was built + working-directory: packages/react-native-room-kit/example/android run: | - cd packages/react-native-room-kit/example/android - ./gradlew assembleRelease --no-daemon + APK_PATH="app/build/outputs/apk/release/app-release.apk" + if [ -f "$APK_PATH" ]; then + echo "✅ APK built successfully" + ls -lh "$APK_PATH" + echo "APK size: $(du -h "$APK_PATH" | cut -f1)" + else + echo "❌ APK not found at $APK_PATH" + echo "Available files:" + find app/build/outputs -type f + exit 1 + fi + + - name: Upload APK artifact + if: success() + uses: actions/upload-artifact@v4 + with: + name: android-apk-${{ github.sha }} + path: packages/react-native-room-kit/example/android/app/build/outputs/apk/release/*.apk + retention-days: 7 + + - name: Upload build logs on failure + if: failure() + uses: actions/upload-artifact@v4 + with: + name: android-build-logs-${{ github.sha }} + path: | + packages/react-native-room-kit/example/android/app/build/outputs/logs/ + packages/react-native-room-kit/example/android/build/reports/ + retention-days: 7 + if-no-files-found: ignore + + - name: Generate job summary + if: always() + run: | + echo "### Android Build Summary" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "- **Status**: ${{ job.status }}" >> $GITHUB_STEP_SUMMARY + echo "- **Runner**: ubuntu-24.04" >> $GITHUB_STEP_SUMMARY + echo "- **Node**: $(node --version)" >> $GITHUB_STEP_SUMMARY + echo "- **Java**: $(java -version 2>&1 | head -1)" >> $GITHUB_STEP_SUMMARY + echo "- **Build Time**: ${{ steps.build.outputs.time || 'N/A' }}" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + if [ -f "packages/react-native-room-kit/example/android/app/build/outputs/apk/release/app-release.apk" ]; then + echo "✅ APK built successfully" >> $GITHUB_STEP_SUMMARY + else + echo "❌ APK build failed" >> $GITHUB_STEP_SUMMARY + fi build_ios: name: Build iOS App if: github.event.pull_request.draft == false - runs-on: macOS-latest - timeout-minutes: 45 + runs-on: macos-14 + timeout-minutes: 60 + steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Set up JDK 15 - uses: actions/setup-java@v3 + - name: Select Xcode version + run: | + # Use latest Xcode 16.x available on macos-14 + sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer || \ + sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer || \ + sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer || \ + sudo xcode-select -s /Applications/Xcode.app/Contents/Developer + xcodebuild -version + xcode-select -p + + - name: Set up JDK 17 + uses: actions/setup-java@v4 with: distribution: zulu - java-version: 15.x + java-version: "17" - - name: Setup Node + - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version: "22.x" + cache: npm + cache-dependency-path: | + packages/react-native-hms/package-lock.json + packages/react-native-hms/example/package-lock.json + packages/react-native-room-kit/package-lock.json + packages/react-native-room-kit/example/package-lock.json - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.2 - bundler-cache: true + ruby-version: "3.2" + bundler-cache: false + + - name: Install CocoaPods + run: | + # Install CocoaPods globally to avoid bundler conflicts with eval_gemfile + gem install cocoapods -v '~> 1.15' - - name: Install dependencies + # Verify installation + pod --version + echo "✅ CocoaPods installed" + + - name: Display environment info run: | - cd packages/react-native-hms/ - npm install - cd example/ - npm install - cd ../../react-native-room-kit/ - npm install - cd example/ - npm install + echo "Node: $(node --version)" + echo "npm: $(npm --version)" + echo "Ruby: $(ruby --version | cut -d' ' -f1-2)" + echo "CocoaPods: $(pod --version)" - - name: Cache Pods + - name: Cache CocoaPods id: cache-pods - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: packages/react-native-room-kit/example/ios/Pods - key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} + key: ${{ runner.os }}-pods-${{ hashFiles('packages/react-native-room-kit/example/ios/Podfile.lock') }} restore-keys: | ${{ runner.os }}-pods- - - name: Install Pods if Cache Missed + - name: Cache iOS Derived Data + uses: actions/cache@v4 + with: + path: packages/react-native-room-kit/example/ios/build + key: ${{ runner.os }}-ios-derived-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-ios-derived- + + - name: Install dependencies (react-native-hms) + working-directory: packages/react-native-hms + run: | + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + + - name: Install dependencies (react-native-hms/example) + working-directory: packages/react-native-hms/example + run: | + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + + - name: Install dependencies (react-native-room-kit) + working-directory: packages/react-native-room-kit + run: | + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + + - name: Install dependencies (react-native-room-kit/example) + working-directory: packages/react-native-room-kit/example + run: | + npm ci --legacy-peer-deps || npm install --legacy-peer-deps + + - name: Build and pack react-native-hms + working-directory: packages/react-native-hms + run: | + npm run prepack + npm pack + echo "HMS_PACKAGE=$(ls -t *.tgz | head -1)" >> $GITHUB_ENV + + - name: Link react-native-hms to room-kit + working-directory: packages/react-native-room-kit + run: | + npm install ../react-native-hms/${{ env.HMS_PACKAGE }} + npm run prepack + + - name: Install CocoaPods dependencies if: steps.cache-pods.outputs.cache-hit != 'true' + working-directory: packages/react-native-room-kit/example/ios run: | - sudo gem install cocoapods - cd ./packages/react-native-room-kit/example/ios - pod install + # Install pods using globally installed CocoaPods + pod install --repo-update || pod install --repo-update + continue-on-error: false - - name: Build iOS App - uses: yukiarrr/ios-build-action@v1.11.1 + - name: Verify Pods installation + working-directory: packages/react-native-room-kit/example/ios + run: | + if [ -d "Pods" ]; then + echo "✅ Pods installed successfully" + echo "Pods directory size: $(du -sh Pods | cut -f1)" + else + echo "❌ Pods directory not found" + exit 1 + fi + + - name: Build iOS App (unsigned for validation) + id: ios-build + working-directory: packages/react-native-room-kit/example/ios + run: | + set -o pipefail + xcodebuild -workspace RNExample.xcworkspace \ + -scheme RNExample \ + -configuration Release \ + -sdk iphonesimulator \ + -destination 'platform=iOS Simulator,name=iPhone 16' \ + -derivedDataPath build \ + CODE_SIGNING_REQUIRED=NO \ + CODE_SIGN_IDENTITY="" \ + CODE_SIGNING_ALLOWED=NO \ + clean build | tee xcodebuild.log + + - name: Verify iOS build output + working-directory: packages/react-native-room-kit/example/ios + run: | + if [ -d "build/Build/Products/Release-iphonesimulator/RNExample.app" ]; then + echo "✅ iOS app built successfully" + ls -lh build/Build/Products/Release-iphonesimulator/ + else + echo "❌ iOS app not found" + echo "Available files:" + find build/Build/Products -type d -name "*.app" || echo "No .app found" + exit 1 + fi + + - name: Upload build logs on failure + if: failure() + uses: actions/upload-artifact@v4 with: - project-path: packages/react-native-room-kit/example/ios/RNExample.xcodeproj - p12-base64: ${{ secrets.IOS_P12_BASE64 }} - certificate-password: ${{ secrets.IOS_CERTIFICATE_PASSWORD }} - mobileprovision-base64: | - ${{ secrets.ADHOC_MOBILEPROVISION_BASE64 }} - ${{ secrets.ADHOCEXTENSION_MOBILEPROVISION_BASE64 }} - code-signing-identity: iPhone Distribution - team-id: ${{ secrets.IOS_TEAM_ID }} - workspace-path: packages/react-native-room-kit/example/ios/RNExample.xcworkspace - scheme: RNExample - export-method: ad-hoc - export-options: packages/react-native-room-kit/example/ios/ExportOptions.plist + name: ios-build-logs-${{ github.sha }} + path: | + packages/react-native-room-kit/example/ios/xcodebuild.log + packages/react-native-room-kit/example/ios/build/Logs/ + retention-days: 7 + if-no-files-found: ignore + + - name: Generate job summary + if: always() + run: | + echo "### iOS Build Summary" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "- **Status**: ${{ job.status }}" >> $GITHUB_STEP_SUMMARY + echo "- **Runner**: macos-14 (Apple Silicon)" >> $GITHUB_STEP_SUMMARY + echo "- **Xcode**: $(xcodebuild -version | head -1)" >> $GITHUB_STEP_SUMMARY + echo "- **Node**: $(node --version)" >> $GITHUB_STEP_SUMMARY + echo "- **Ruby**: $(ruby --version | cut -d' ' -f1-2)" >> $GITHUB_STEP_SUMMARY + echo "- **CocoaPods**: $(pod --version 2>/dev/null || echo 'N/A')" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + if [ -d "packages/react-native-room-kit/example/ios/build/Build/Products/Release-iphonesimulator/RNExample.app" ]; then + echo "✅ iOS app built successfully" >> $GITHUB_STEP_SUMMARY + else + echo "❌ iOS app build failed" >> $GITHUB_STEP_SUMMARY + fi diff --git a/.github/workflows/trunk-check.yml b/.github/workflows/trunk-check.yml deleted file mode 100644 index 5cae7fa7e..000000000 --- a/.github/workflows/trunk-check.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Trunk Check -on: [pull_request] -concurrency: - group: ${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -permissions: read-all - -jobs: - trunk_check: - name: Trunk Check Runner - runs-on: ubuntu-latest - permissions: - checks: write - contents: read - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Trunk Check - uses: trunk-io/trunk-action@v1.1.9 diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml deleted file mode 100644 index 93de0dfba..000000000 --- a/.github/workflows/vale.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Vale Linter - -on: - workflow_dispatch: {} - pull_request: - paths: - - "**.md" - -permissions: - checks: write - contents: read - -jobs: - vale: - name: runner / vale - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: errata-ai/vale-action@reviewdog - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - with: - fail_on_error: true - filter_mode: diff_context diff --git a/.gitignore b/.gitignore index 66d841e1a..77d3d4e7c 100644 --- a/.gitignore +++ b/.gitignore @@ -101,4 +101,6 @@ packages/react-native-room-kit/example/vendor packages/react-native-room-kit/example/ios/Pods packages/react-native-room-kit/example/android/app/build -*.hprof \ No newline at end of file +*.hprof +settings.local.json +.xcode.env.local diff --git a/.java-version b/.java-version index 8808b7e39..da2a99909 100644 --- a/.java-version +++ b/.java-version @@ -1 +1 @@ -17.0.12 +17.0.17 diff --git a/.vale.ini b/.vale.ini index 6646ca3a5..d1248b6e8 100644 --- a/.vale.ini +++ b/.vale.ini @@ -2,8 +2,6 @@ StylesPath = .github/styles MinAlertLevel = error -Vocab = HMSVocab - Packages = Google, Readability [*.{md}] diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..44a963dda --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,395 @@ +# CLAUDE.md + +Project-specific guidance for Claude Code when working with the 100ms React Native SDK monorepo. + +## Project Overview + +- **Type**: React Native monorepo for video conferencing SDK +- **Main packages**: + - `@100mslive/react-native-hms` - Core SDK with native modules (iOS/Android) + - `@100mslive/react-native-room-kit` - Prebuilt UI components + - `@100mslive/react-native-video-plugin` - Video player plugin +- **Sample apps**: HMSReactNativeSample, expo demo, callkeep demo, quickstart, virtual background +- **Package manager**: npm (NOT yarn) +- **Repository**: https://github.com/100mslive/100ms-react-native + +## Development Environment + +### Required Versions + +- **Node.js**: v22.20.0 (ENFORCED via .nvmrc - always use `nvm use`) +- **npm**: v10.9.3 (comes with Node via nvm) +- **React Native**: 0.73.0+ (minimum), 0.77.3 (recommended) +- **React**: 18.2.0+ +- **TypeScript**: 4.6.3 (react-native-hms), 5.0.2 (react-native-room-kit) +- **Java**: 17+ (specified in `.java-version` file) +- **Ruby**: For Fastlane and CocoaPods +- **iOS**: 16.0+ (minimum) +- **Android**: API 24+ (Android 7.0) + +### Required Tools + +- nvm (Node Version Manager) +- CocoaPods (`gem install cocoapods`) +- Fastlane (`gem install fastlane`) +- bundler (`gem install bundler`) +- Android SDK (for Android development) +- Xcode (for iOS development) + +### Initial Setup + +```bash +# Always use correct Node version +nvm use + +# Install root dependencies +npm install + +# For react-native-hms package +cd packages/react-native-hms +npm install +npm run prepack # Builds the package + +# For example apps +cd example +npm install +cd ios && pod install # iOS only +``` + +## Monorepo Structure + +``` +100ms-react-native/ +├── packages/ +│ ├── react-native-hms/ # Core SDK with native modules +│ │ ├── src/ # TypeScript source +│ │ ├── android/ # Android native code +│ │ ├── ios/ # iOS native code +│ │ ├── lib/ # Built output (gitignored) +│ │ └── example/ # Example app for testing +│ ├── react-native-room-kit/ # Prebuilt UI Kit +│ │ ├── src/ # React components +│ │ └── example/ # Example app +│ └── react-native-video-plugin/ # Video player +├── sample-apps/ # Standalone sample applications +├── scripts/ # Build and utility scripts +├── .github/workflows/ # CI/CD configuration +└── release-apps.sh # Release automation script +``` + +## Common Development Commands + +### Package Development + +```bash +# Build packages (required before testing changes) +cd packages/react-native-hms +npm run prepack # Uses react-native-builder-bob + +cd packages/react-native-room-kit +npm run prepack + +# Lint code +npm run lint + +# Type check +npm run typescript # or npm run typecheck + +# Run tests +npm test +``` + +### Example Apps + +```bash +# Run Android +cd packages/react-native-hms/example +npx react-native run-android + +# Run iOS +cd packages/react-native-hms/example +cd ios && pod install && cd .. +npx react-native run-ios +``` + +### Release Process + +```bash +# Release sample apps (Android & iOS) +./release-apps.sh + +# Options: +./release-apps.sh --android-only +./release-apps.sh --ios-only +./release-apps.sh --dry-run +./release-apps.sh --no-commit +``` + +## Code Style & Standards + +### Prettier Configuration (MUST FOLLOW) + +- Single quotes (not double) +- Tab width: 2 spaces +- Trailing commas: ES5 style +- No tabs (use spaces) +- Consistent quote props + +### ESLint + +- Extends: `@react-native-community`, `prettier` +- Pre-commit hook runs lint automatically +- Fix with: `npm run lint -- --fix` + +### TypeScript + +- Strict mode enabled +- Use proper types (no `any` unless necessary) +- Export types for public APIs + +### Commit Messages (ENFORCED) + +- Use Conventional Commits format +- Examples: + - `feat: add screen sharing support` + - `fix: resolve audio mute issue on Android` + - `chore: update dependencies` + - `docs: update installation guide` +- Pre-commit hooks run: `npm run lint && npm run typescript` + +## Build & Release Process + +### Package Building + +- Uses `react-native-builder-bob` for compilation +- Outputs to `lib/` directory (commonjs, module, typescript) +- Always run `npm run prepack` after source changes +- Check `package.json` "files" field for published content + +### Native Builds + +**Android:** + +- Gradle build system +- Build files: `android/build.gradle`, `android/app/build.gradle` +- Version bumping: Update `versionCode` and `versionName` + +**iOS:** + +- CocoaPods for dependency management +- Podspec file: `react-native-hms.podspec` +- Always run `pod install` after native changes +- Xcode project: `ios/RNExample.xcodeproj` + +### Release Script + +- `release-apps.sh` automates Android & iOS distribution +- Uses Fastlane lanes for build and deploy +- Automatically bumps versions +- Can commit changes or run dry-run + +## Git Workflow & CI/CD + +### Branches + +- Main branch: `main` +- Feature branches: Create from `main` +- Always sync with remote before creating PRs + +### Pre-commit Hooks + +- Managed by Husky/Lefthook +- Automatically runs: lint, typescript check +- Must pass before commit is created + +### CI/CD Workflows + +- `build.yml` - Validates PR builds +- `release_apps.yml` - Automates app distribution +- `trunk-check.yml` - Code quality checks +- `vale.yml` - Documentation linting +- All workflows must pass for PR merge + +### Publishing Packages + +- Uses `release-it` with conventional changelog +- Semantic versioning (major.minor.patch) +- Publishes to npm registry + +## Platform-Specific Notes + +### iOS Development + +- **Native code**: `ios/` directory in each package +- **Podspec**: Defines CocoaPods package (iOS 16.0+ required) +- **Permissions**: Add to Info.plist (Camera, Microphone, Network) +- **Minimum iOS**: 16.0 +- **Common issues**: + - Run `pod install` after dependency changes + - Clean build folder if facing cache issues + - Check signing & capabilities in Xcode + +### Android Development + +- **Native code**: `android/` directory in each package +- **Gradle files**: `build.gradle` (project and app level) +- **Permissions**: Add to AndroidManifest.xml +- **Minimum SDK**: 24 (Android 7.0) +- **Target SDK**: 35 (recommended) +- **Architectures**: arm64-v8a, x86_64 (64-bit only, 32-bit dropped) +- **Common issues**: + - Gradle sync after dependency changes + - Clean build: `cd android && ./gradlew clean` + - Check JDK version matches `.java-version` + +### Native Modules + +- Both iOS and Android implementations required +- Use TurboModules pattern for new modules +- Test on both platforms before PR +- Document native setup in package README + +## Testing Strategy + +### Unit Tests + +- Jest configuration in `package.json` +- Run with `npm test` +- Place tests in `__tests__` directories +- Mock native modules when needed + +### Integration Tests + +- Test package integration in example apps +- Verify both iOS and Android +- Test common user flows + +### Manual Testing Checklist + +- [ ] Test on iOS simulator/device +- [ ] Test on Android emulator/device +- [ ] Verify permissions work correctly +- [ ] Check video/audio functionality +- [ ] Test with different React Native versions + +## Common Pitfalls & Troubleshooting + +### Node Version Mismatch + +- **ALWAYS** run `nvm use` before any command +- Project requires Node v22.20.0 (specified in .nvmrc) +- Shell should auto-switch if configured correctly + +### Pod Install Issues + +- Delete `ios/Pods` and `ios/Podfile.lock` +- Run `pod install --repo-update` +- Check Ruby version compatibility + +### Gradle Build Failures + +- Clean build: `cd android && ./gradlew clean` +- Check Java version matches `.java-version` +- Verify Android SDK is properly installed +- Check gradle wrapper version + +### Metro Bundler Issues + +- Clear cache: `npx react-native start --reset-cache` +- Delete `node_modules` and reinstall +- Check for conflicting dependencies + +### Package Not Updated + +- Always run `npm run prepack` after source changes +- Check `lib/` directory has latest compiled code +- Verify example app is using correct package version + +### Native Module Linking + +- React Native 0.60+ uses autolinking +- For manual linking issues, check: + - iOS: Podfile includes package + - Android: `settings.gradle` and `build.gradle` include package + +## File Pointers + +### Example Implementations + +- SDK usage examples: `packages/react-native-hms/example/` +- Room Kit examples: `packages/react-native-room-kit/example/` +- Sample apps: `sample-apps/` + +### Configuration Files + +- ESLint/Prettier: Check `eslintConfig` and `prettier` in package.json +- TypeScript: `tsconfig.json`, `tsconfig.build.json` +- Build configuration: `react-native-builder-bob` in package.json +- CI/CD: `.github/workflows/` + +### Build Scripts + +- Release automation: `release-apps.sh` +- Fastlane: `packages/react-native-room-kit/example/android/fastlane/` +- Fastlane: `packages/react-native-room-kit/example/ios/fastlane/` + +### Documentation + +- Main README: `README.md` +- Package READMEs: `packages/*/README.md` +- Contributing: `CONTRIBUTING.md` +- Code of Conduct: `CODE_OF_CONDUCT.md` + +## Developer Notes + +### Before Starting Work + +1. ✓ Run `nvm use` to ensure correct Node version +2. ✓ Pull latest changes from `main` +3. ✓ Run `npm install` in relevant directories +4. ✓ Check CI/CD status on GitHub + +### When Making Changes + +- **Native modules**: Always test both iOS and Android +- **Package changes**: Run `npm run prepack` before testing +- **Dependencies**: Update both package.json and package-lock.json +- **Breaking changes**: Update major version, document migration + +### Before Committing + +1. ✓ Run `npm run lint` - Fix any linting errors +2. ✓ Run `npm run typescript` - Fix any type errors +3. ✓ Run `npm test` - Ensure tests pass +4. ✓ Test on both platforms (if native changes) +5. ✓ Write clear commit message (Conventional Commits) + +### Before Creating PR + +1. ✓ Ensure all CI checks would pass +2. ✓ Update relevant documentation +3. ✓ Add tests for new features +4. ✓ Verify example apps work correctly +5. ✓ Check that no sensitive data is committed + +### Package Publishing Checklist + +1. ✓ Bump version following semver +2. ✓ Update CHANGELOG +3. ✓ Run `npm run prepack` to build +4. ✓ Test package in example app +5. ✓ Create git tag +6. ✓ Publish to npm +7. ✓ Create GitHub release + +## Important Reminders + +- 🚨 **NEVER** commit `node_modules/` or `lib/` directories +- 🚨 **NEVER** commit secrets, API keys, or credentials +- 🚨 **ALWAYS** use npm (not yarn) for consistency +- 🚨 **ALWAYS** test native changes on both platforms +- 🚨 **ALWAYS** run `npm run prepack` before testing package changes +- 🚨 Node version MUST be v22.20.0 (check with `node --version`) +- ⚡ Pre-commit hooks are mandatory (don't skip with --no-verify) +- 📱 Maximum 3-4 HMSView components per screen (performance) +- 🔄 Use conventional commits (enforced by commitlint) diff --git a/README.md b/README.md index 6ed0776b0..b08f6c8dd 100644 --- a/README.md +++ b/README.md @@ -45,27 +45,28 @@ Troubleshooting Guide for resolving issues in running the Example app is [availa ## ☝️ Minimum Configuration -- Support for React Native 0.64.4 or above -- Support for Java 8 or above +- Support for React Native 0.73.0 or above +- Support for Java 17 or above - Support for Android API level 24 or above -- Xcode 13 or above -- Support for iOS 12 or above +- Xcode 14 or above +- Support for iOS 16 or above +- Node.js 22 or above ## 🤝 Recommended Configuration -- React Native 0.68.0 or above -- Java 11 or above -- Android API level 33 or above -- Xcode 14 or above +- React Native 0.77.3 or above +- Java 17 or above +- Android API level 35 or above +- Xcode 15 or above - iOS 16 or above +- Node.js 22 or above ## 📱 Supported Devices -- The Android SDK supports Android API level 21 and higher. It is built for armeabi-v7a, arm64-v8a, x86, and x86_64 architectures. +- The Android SDK supports Android API level 24 (Android 7.0) and higher. It is built for arm64-v8a and x86_64 architectures (64-bit only). Devices running Android OS 11 or above is recommended. -- iPhone & iPads with iOS version 12 or above are supported. - Devices running iOS 16 or above is recommended. +- iPhone & iPads with iOS version 16 or above are supported. ## Installation diff --git a/packages/react-native-hms/README.md b/packages/react-native-hms/README.md index 1a900aa79..58a2ff728 100644 --- a/packages/react-native-hms/README.md +++ b/packages/react-native-hms/README.md @@ -47,27 +47,28 @@ Troubleshooting Guide for resolving issues in running the Example app is [availa ## ☝️ Minimum Configuration -- Support for React Native 0.64.4 or above -- Support for Java 8 or above +- Support for React Native 0.73.0 or above +- Support for Java 17 or above - Support for Android API level 24 or above -- Xcode 13 or above -- Support for iOS 12 or above +- Xcode 14 or above +- Support for iOS 16 or above +- Node.js 22 or above ## 🤝 Recommended Configuration -- React Native 0.68.0 or above -- Java 11 or above -- Android API level 33 or above -- Xcode 14 or above +- React Native 0.77.3 or above +- Java 17 or above +- Android API level 35 or above +- Xcode 15 or above - iOS 16 or above +- Node.js 22 or above ## 📱 Supported Devices -- The Android SDK supports Android API level 21 and higher. It is built for armeabi-v7a, arm64-v8a, x86, and x86_64 architectures. +- The Android SDK supports Android API level 24 (Android 7.0) and higher. It is built for arm64-v8a and x86_64 architectures (64-bit only). Devices running Android OS 11 or above is recommended. -- iPhone & iPads with iOS version 12 or above are supported. - Devices running iOS 16 or above is recommended. +- iPhone & iPads with iOS version 16 or above are supported. ## Installation diff --git a/packages/react-native-hms/android/build.gradle b/packages/react-native-hms/android/build.gradle index 660828f82..342431fb3 100644 --- a/packages/react-native-hms/android/build.gradle +++ b/packages/react-native-hms/android/build.gradle @@ -3,67 +3,52 @@ import groovy.json.JsonSlurper def sdkVersions = new JsonSlurper().parse file("../sdk-versions.json") buildscript { - - ext.safeExtGet = { prop, fallback -> - rootProject.ext.has(prop) ? rootProject.ext.get (prop) : fallback - } - - ext.getKotlinVersion = { - if (ext.has("kotlinVersion")) { - ext.kotlinVersion() - } else { - ext.safeExtGet("kotlinVersion", "1.7.20") - } - } - ext.getKotlinGradlePluginVersion = { - if (ext.has("kotlinGradlePluginVersion")) { - ext.kotlinGradlePluginVersion() - } else { - ext.safeExtGet("kotlinGradlePluginVersion", "1.8.0") - } - } - if (project == rootProject) { - repositories { - google() - mavenCentral() - gradlePluginPortal( ) - } - - dependencies { - classpath 'com.android.tools.build:gradle:3.5.3' - } - } repositories { + google() mavenCentral() } dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${getKotlinGradlePluginVersion()}" + classpath("com.android.tools.build:gradle:8.5.0") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21") } } apply plugin: 'com.android.library' apply plugin: 'kotlin-android' +// Define helper functions for Kotlin version management (RN 0.77.3 requires 2.0.21) +def getKotlinVersion() { + return rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : "2.0.21" +} + +def getKotlinGradlePluginVersion() { + return rootProject.ext.has("kotlinGradlePluginVersion") ? rootProject.ext.get("kotlinGradlePluginVersion") : "2.0.21" +} + def safeExtGet(prop, fallback) { rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback } android { namespace 'com.reactnativehmssdk' - compileSdkVersion safeExtGet('Hmssdk_compileSdkVersion', 31) + buildToolsVersion = "35.0.0" + compileSdkVersion safeExtGet('Hmssdk_compileSdkVersion', 35) defaultConfig { - minSdkVersion safeExtGet('Hmssdk_minSdkVersion', 21) - targetSdkVersion safeExtGet('Hmssdk_targetSdkVersion', 31) + minSdkVersion safeExtGet('Hmssdk_minSdkVersion', 24) + targetSdkVersion safeExtGet('Hmssdk_targetSdkVersion', 35) versionCode 1 versionName "1.0" } - lintOptions { + lint { disable 'GradleCompatible' } compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 + } + kotlinOptions { + jvmTarget = "17" } } @@ -82,12 +67,12 @@ repositories { dependencies { //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" - implementation "com.google.code.gson:gson:2.9.0" + implementation "com.google.code.gson:gson:2.11.0" implementation "org.jetbrains.kotlin:kotlin-stdlib:${getKotlinVersion()}" - implementation "androidx.core:core-ktx:1.6.0" - implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0" - implementation "androidx.constraintlayout:constraintlayout:2.1.3" - implementation "androidx.appcompat:appcompat:1.3.1" + implementation "androidx.core:core-ktx:1.13.1" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1" + implementation "androidx.constraintlayout:constraintlayout:2.1.4" + implementation "androidx.appcompat:appcompat:1.7.0" implementation "live.100ms:android-sdk:${sdkVersions["android"]}" implementation "live.100ms:video-view:${sdkVersions["android"]}" diff --git a/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSHelper.kt b/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSHelper.kt index 6ab608d18..f6316a464 100644 --- a/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSHelper.kt +++ b/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSHelper.kt @@ -11,6 +11,7 @@ import android.webkit.URLUtil import androidx.annotation.RequiresApi import com.facebook.react.bridge.* import com.facebook.react.uimanager.events.RCTEventEmitter +import hms.webrtc.SurfaceViewRenderer import live.hms.video.audio.HMSAudioManager import live.hms.video.error.HMSException import live.hms.video.events.AgentType @@ -27,7 +28,6 @@ import live.hms.video.sdk.models.role.HMSRole import live.hms.video.services.LogAlarmManager import live.hms.video.utils.HMSLogger import live.hms.video.utils.HmsUtilities -import org.webrtc.SurfaceViewRenderer import java.io.ByteArrayOutputStream import java.util.* import kotlin.collections.ArrayList diff --git a/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSView.kt b/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSView.kt index 48331c776..c627aad4e 100644 --- a/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSView.kt +++ b/packages/react-native-hms/android/src/main/java/com/reactnativehmssdk/HMSView.kt @@ -12,11 +12,11 @@ import com.facebook.react.bridge.ReactContext import com.facebook.react.bridge.ReadableArray import com.facebook.react.bridge.WritableMap import com.facebook.react.uimanager.events.RCTEventEmitter +import hms.webrtc.RendererCommon import live.hms.video.media.tracks.HMSVideoTrack import live.hms.video.utils.HmsUtilities import live.hms.videoview.HMSVideoView import live.hms.videoview.VideoViewStateChangeListener -import org.webrtc.RendererCommon @SuppressLint("ViewConstructor") class HMSView( diff --git a/packages/react-native-hms/example/ios/Podfile b/packages/react-native-hms/example/ios/Podfile index 9b0865d5c..226d08d43 100644 --- a/packages/react-native-hms/example/ios/Podfile +++ b/packages/react-native-hms/example/ios/Podfile @@ -1,7 +1,15 @@ require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' +require_relative '../node_modules/react-native-permissions/scripts/setup' -platform :ios, '12.0' +platform :ios, '16.0' +prepare_react_native_project! + +linkage = ENV['USE_FRAMEWORKS'] +if linkage != nil + Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green + use_frameworks! :linkage => linkage.to_sym +end # ENSURE TO SET THE CORRECT iOS SCREENSHARE EXTENSION TARGET NAME BELOW. # Not required if starting Screenshare from iOS devices is not a feature of the app. Then Remove this Target snippet @@ -13,29 +21,38 @@ end # ENSURE TO SET THE CORRECT MAIN APP TARGET NAME BELOW target 'RNHMSExample' do config = use_native_modules! - permissions_path = '../node_modules/react-native-permissions/ios' + + # Flags change depending on the env values. + flags = get_default_flags() + + setup_permissions([ + 'Camera', + 'Microphone', + ]) use_react_native!( :path => config[:reactNativePath], - # to enable hermes on iOS, change `false` to `true` and then install pods - # :hermes_enabled => false - :hermes_enabled => true + # Hermes is now enabled by default. Disable by setting this flag to false. + # Upcoming versions of React Native may rely on get_default_flags(), but + # we make it explicit here to aid in the React Native upgrade process. + :hermes_enabled => flags[:hermes_enabled], + :fabric_enabled => flags[:fabric_enabled], + # Flipper is disabled to support 16KB page size devices + :flipper_configuration => FlipperConfiguration.disabled, + # An absolute path to your application root. + :app_path => "#{Pod::Config.instance.installation_root}/.." ) pod 'react-native-hms', :path => '../..' - pod 'Permission-Camera', :path => "#{permissions_path}/Camera" - pod 'Permission-Microphone', :path => "#{permissions_path}/Microphone" - - # Enables Flipper. - # Note that if you have use_frameworks! enabled, Flipper will not work and - # you should disable the next line. - use_flipper!() - # POST INSTALL SCRIPT TO DISABLE BITCODE FROM ALL PODS & EXCLUDE arm64 FROM SIMULATORS post_install do |installer| - react_native_post_install(installer) + react_native_post_install( + installer, + # Set `mac_catalyst_enabled` to `true` in order to apply patches + # necessary for Mac Catalyst builds + :mac_catalyst_enabled => false + ) installer.pods_project.build_configurations.each do |config| - config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" config.build_settings['ENABLE_BITCODE'] = 'NO' end end diff --git a/packages/react-native-hms/example/package.json b/packages/react-native-hms/example/package.json index 0475e4af1..91884ec62 100644 --- a/packages/react-native-hms/example/package.json +++ b/packages/react-native-hms/example/package.json @@ -1,6 +1,6 @@ { "name": "RNHMSExample", - "version": "1.11.0", + "version": "1.12.0", "private": true, "scripts": { "preinstall": "cd ../ && npm install && cd ./example", diff --git a/packages/react-native-hms/ios/HMSRNSDK.swift b/packages/react-native-hms/ios/HMSRNSDK.swift index b087412f0..320cd8dd1 100644 --- a/packages/react-native-hms/ios/HMSRNSDK.swift +++ b/packages/react-native-hms/ios/HMSRNSDK.swift @@ -2343,14 +2343,39 @@ class HMSRNSDK: NSObject, HMSUpdateListener, HMSPreviewListener { reject?("6004", errorMessage, nil) return } - DispatchQueue.main.async { - guard let image = RCTConvert.uiImage(imageSource) else { - let errorMessage = "\(#function) Unable to create `UIImage` from given background `source` object!" - reject?("6004", errorMessage, nil) - return + + // Check if it's a remote URL + if let uriString = imageSource.value(forKey: "uri") as? String, + (uriString.hasPrefix("http://") || uriString.hasPrefix("https://")), + let url = URL(string: uriString) { + // Download remote image + URLSession.shared.dataTask(with: url) { data, response, error in + DispatchQueue.main.async { + if let error = error { + let errorMessage = "\(#function) Failed to download image: \(error.localizedDescription)" + reject?("6004", errorMessage, nil) + return + } + guard let data = data, let image = UIImage(data: data) else { + let errorMessage = "\(#function) Unable to create `UIImage` from downloaded data!" + reject?("6004", errorMessage, nil) + return + } + virtualBackgroundPlugin.backgroundImage = image + resolve?(true) + } + }.resume() + } else { + // Use RCTConvert for local files and bundled resources + DispatchQueue.main.async { + guard let image = RCTConvert.uiImage(imageSource) else { + let errorMessage = "\(#function) Unable to create `UIImage` from given background `source` object!" + reject?("6004", errorMessage, nil) + return + } + virtualBackgroundPlugin.backgroundImage = image + resolve?(true) } - virtualBackgroundPlugin.backgroundImage = image - resolve?(true) } default: let errorMessage = "\(#function) Unknown background `type` passed!" diff --git a/packages/react-native-hms/package-lock.json b/packages/react-native-hms/package-lock.json index b0370114b..91040ccbd 100644 --- a/packages/react-native-hms/package-lock.json +++ b/packages/react-native-hms/package-lock.json @@ -1,12 +1,12 @@ { "name": "@100mslive/react-native-hms", - "version": "1.11.0", + "version": "1.12.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@100mslive/react-native-hms", - "version": "1.11.0", + "version": "1.12.0", "license": "MIT", "dependencies": { "zustand": "^4.3.8" @@ -24,15 +24,15 @@ "husky": "^4.2.5", "jest": "^26.0.1", "prettier": "^2.0.5", - "react": "17.0.1", - "react-native": "0.64.4", + "react": "18.2.0", + "react-native": "0.73.11", "react-native-builder-bob": "^0.18.0", "typedoc": "^0.24.7", "typescript": "^4.6.3" }, "peerDependencies": { "react": "*", - "react-native": "*" + "react-native": ">=0.73.0" } }, "node_modules/@ampproject/remapping": { @@ -49,22 +49,23 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dev": true, "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", - "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", "dev": true, "engines": { "node": ">=6.9.0" @@ -116,15 +117,16 @@ } }, "node_modules/@babel/generator": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", - "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "dev": true, "dependencies": { - "@babel/types": "^7.25.0", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" @@ -156,14 +158,14 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", - "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.25.2", - "@babel/helper-validator-option": "^7.24.8", - "browserslist": "^4.23.1", + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -237,21 +239,65 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "debug": "^4.4.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "resolve": "^1.22.10" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.24.8", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", @@ -266,13 +312,13 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", "dev": true, "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -309,9 +355,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", - "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", "dev": true, "engines": { "node": ">=6.9.0" @@ -378,27 +424,27 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", - "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", - "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "dev": true, "engines": { "node": ">=6.9.0" @@ -419,13 +465,13 @@ } }, "node_modules/@babel/helpers": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", - "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dev": true, "dependencies": { - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.0" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" @@ -447,12 +493,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", - "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "dev": true, "dependencies": { - "@babel/types": "^7.25.2" + "@babel/types": "^7.28.5" }, "bin": { "parser": "bin/babel-parser.js" @@ -540,6 +586,25 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", + "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", @@ -558,13 +623,12 @@ } }, "node_modules/@babel/plugin-proposal-export-default-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.24.7.tgz", - "integrity": "sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.27.1.tgz", + "integrity": "sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-default-from": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -590,6 +654,23 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.20.7", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", @@ -721,12 +802,12 @@ } }, "node_modules/@babel/plugin-syntax-export-default-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.24.7.tgz", - "integrity": "sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.27.1.tgz", + "integrity": "sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1464,21 +1545,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-assign": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.24.7.tgz", - "integrity": "sha512-DOzAi77P9jSyPijHS7Z8vH0wLRcZH6wWxuIZgLAiy8FWOkcKMJmnyHjy2JM94k6A0QxlA/hlLh+R9T3GEryjNQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-transform-object-rest-spread": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", @@ -1660,12 +1726,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", - "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1675,12 +1741,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", - "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1737,16 +1803,16 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", - "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.5.tgz", + "integrity": "sha512-20NUVgOrinudkIBzQ2bNxP08YpKprUkRTiRSd2/Z5GOdPImJGkoN4Z7IQe1T5AdyKI1i5L6RBmluqdSzvaq9/w==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.1", - "babel-plugin-polyfill-regenerator": "^0.6.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", "semver": "^6.3.1" }, "engines": { @@ -1756,6 +1822,19 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -2100,9 +2179,9 @@ } }, "node_modules/@babel/register": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz", - "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.28.3.tgz", + "integrity": "sha512-CieDOtd8u208eI49bYl4z1J22ySFw87IGwE+IswFEExH7e3rLgKb0WNQeumnacQ1+VoDJLYI5QFA3AJZuyZQfA==", "dev": true, "dependencies": { "clone-deep": "^4.0.1", @@ -2147,58 +2226,54 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", - "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "dev": true, - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", - "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.25.0", - "@babel/types": "^7.25.0" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", - "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.0", - "@babel/parser": "^7.25.3", - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.2", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", - "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.24.8", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -2747,6 +2822,15 @@ "deprecated": "Use @eslint/object-schema instead", "dev": true }, + "node_modules/@isaacs/ttlcache": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -3021,15 +3105,111 @@ } }, "node_modules/@jest/create-cache-key-function": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-26.6.2.tgz", - "integrity": "sha512-LgEuqU1f/7WEIPYqwLPIvvHuc1sB6gMVbT6zWhin3txYUNYK/kGQrC1F2WR4gR34YlI9bBtViTm5z98RqVZAaw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", "dev": true, "dependencies": { - "@jest/types": "^26.6.2" + "@jest/types": "^29.6.3" }, "engines": { - "node": ">= 10.14.2" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/create-cache-key-function/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/create-cache-key-function/node_modules/@types/yargs": { + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.34.tgz", + "integrity": "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/create-cache-key-function/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/create-cache-key-function/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/create-cache-key-function/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/create-cache-key-function/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/create-cache-key-function/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/create-cache-key-function/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/@jest/environment": { @@ -3186,6 +3366,18 @@ "node": ">=8" } }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/@jest/source-map": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", @@ -3414,17 +3606,13 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { @@ -3436,13 +3624,14 @@ "node": ">=6.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "node_modules/@jridgewell/source-map": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, - "engines": { - "node": ">=6.0.0" + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { @@ -3452,9 +3641,9 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", @@ -3497,85 +3686,52 @@ } }, "node_modules/@react-native-community/cli": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-5.0.1.tgz", - "integrity": "sha512-9VzSYUYSEqxEH5Ib2UNSdn2eyPiYZ4T7Y79o9DKtRBuSaUIwbCUdZtIm+UUjBpLS1XYBkW26FqL8/UdZDmQvXw==", - "dev": true, - "dependencies": { - "@react-native-community/cli-debugger-ui": "^5.0.1", - "@react-native-community/cli-hermes": "^5.0.1", - "@react-native-community/cli-server-api": "^5.0.1", - "@react-native-community/cli-tools": "^5.0.1", - "@react-native-community/cli-types": "^5.0.1", - "appdirsjs": "^1.2.4", - "chalk": "^3.0.0", - "command-exists": "^1.2.8", - "commander": "^2.19.0", - "cosmiconfig": "^5.1.0", - "deepmerge": "^3.2.0", - "envinfo": "^7.7.2", - "execa": "^1.0.0", + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-12.3.7.tgz", + "integrity": "sha512-7+mOhk+3+X3BjSJZZvYrDJynA00gPYTlvT28ZjiLlbuVGfqfNiBKaxuF7rty+gjjpch4iKGvLhIhSN5cuOsdHQ==", + "dev": true, + "dependencies": { + "@react-native-community/cli-clean": "12.3.7", + "@react-native-community/cli-config": "12.3.7", + "@react-native-community/cli-debugger-ui": "12.3.7", + "@react-native-community/cli-doctor": "12.3.7", + "@react-native-community/cli-hermes": "12.3.7", + "@react-native-community/cli-plugin-metro": "12.3.7", + "@react-native-community/cli-server-api": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "@react-native-community/cli-types": "12.3.7", + "chalk": "^4.1.2", + "commander": "^9.4.1", + "deepmerge": "^4.3.0", + "execa": "^5.0.0", "find-up": "^4.1.0", "fs-extra": "^8.1.0", - "glob": "^7.1.3", "graceful-fs": "^4.1.3", - "joi": "^17.2.1", - "leven": "^3.1.0", - "lodash": "^4.17.15", - "metro": "^0.64.0", - "metro-config": "^0.64.0", - "metro-core": "^0.64.0", - "metro-react-native-babel-transformer": "^0.64.0", - "metro-resolver": "^0.64.0", - "metro-runtime": "^0.64.0", - "minimist": "^1.2.0", - "mkdirp": "^0.5.1", - "node-stream-zip": "^1.9.1", - "ora": "^3.4.0", - "pretty-format": "^26.6.2", - "prompts": "^2.4.0", - "semver": "^6.3.0", - "serve-static": "^1.13.1", - "strip-ansi": "^5.2.0", - "sudo-prompt": "^9.0.0", - "wcwidth": "^1.0.1" + "prompts": "^2.4.2", + "semver": "^7.5.2" }, "bin": { "react-native": "build/bin.js" }, "engines": { - "node": ">=12" - }, - "peerDependencies": { - "react-native": ">=0.64.0-rc.0 || 0.0.0-*" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-debugger-ui": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-5.0.1.tgz", - "integrity": "sha512-5gGKaaXYOVE423BUqxIfvfAVSj5Cg1cU/TpGbeg/iqpy2CfqyWqJB3tTuVUbOOiOvR5wbU8tti6pIi1pchJ+oA==", + "node_modules/@react-native-community/cli-clean": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-12.3.7.tgz", + "integrity": "sha512-BCYW77QqyxfhiMEBOoHyciJRNV6Rhz1RvclReIKnCA9wAwmoJBeu4Mu+AwiECA2bUITX16fvPt3NwDsSd1jwfQ==", "dev": true, "dependencies": { - "serve-static": "^1.13.1" + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "execa": "^5.0.0" } }, - "node_modules/@react-native-community/cli-hermes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-5.0.1.tgz", - "integrity": "sha512-nD+ZOFvu5MfjLB18eDJ01MNiFrzj8SDtENjGpf0ZRFndOWASDAmU54/UlU/wj8OzTToK1+S1KY7j2P2M1gleww==", - "dev": true, - "dependencies": { - "@react-native-community/cli-platform-android": "^5.0.1", - "@react-native-community/cli-tools": "^5.0.1", - "chalk": "^3.0.0", - "hermes-profile-transformer": "^0.0.6", - "ip": "^1.1.5" - } - }, - "node_modules/@react-native-community/cli-hermes/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@react-native-community/cli-clean/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" @@ -3587,20 +3743,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@react-native-community/cli-hermes/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "node_modules/@react-native-community/cli-clean/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@react-native-community/cli-hermes/node_modules/color-convert": { + "node_modules/@react-native-community/cli-clean/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -3612,13 +3771,48 @@ "node": ">=7.0.0" } }, - "node_modules/@react-native-community/cli-hermes/node_modules/color-name": { + "node_modules/@react-native-community/cli-clean/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/@react-native-community/cli-hermes/node_modules/has-flag": { + "node_modules/@react-native-community/cli-clean/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -3627,7 +3821,16 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli-hermes/node_modules/supports-color": { + "node_modules/@react-native-community/cli-clean/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@react-native-community/cli-clean/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -3639,25 +3842,21 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli-platform-android": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-5.0.1.tgz", - "integrity": "sha512-qv9GJX6BJ+Y4qvV34vgxKwwN1cnveXUdP6y2YmTW7XoAYs5YUzKqHajpY58EyucAL2y++6+573t5y4U/9IIoww==", + "node_modules/@react-native-community/cli-config": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-12.3.7.tgz", + "integrity": "sha512-IU2UhO9yj1rEBNhHWGzIXpPDzha4hizLP/PUOrhR4BUf6RVPUWEp+e1PXNGR0qjIf6esu7OC7t6mLOhH0NUJEw==", "dev": true, "dependencies": { - "@react-native-community/cli-tools": "^5.0.1", - "chalk": "^3.0.0", - "execa": "^1.0.0", - "fs-extra": "^8.1.0", + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "cosmiconfig": "^5.1.0", + "deepmerge": "^4.3.0", "glob": "^7.1.3", - "jetifier": "^1.6.2", - "lodash": "^4.17.15", - "logkitty": "^0.7.1", - "slash": "^3.0.0", - "xmldoc": "^1.1.2" + "joi": "^17.2.1" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/ansi-styles": { + "node_modules/@react-native-community/cli-config/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -3672,20 +3871,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "node_modules/@react-native-community/cli-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/color-convert": { + "node_modules/@react-native-community/cli-config/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -3697,73 +3899,28 @@ "node": ">=7.0.0" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/color-name": { + "node_modules/@react-native-community/cli-config/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/@react-native-community/cli-platform-android/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "node_modules/@react-native-community/cli-config/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", "dev": true, "dependencies": { - "pump": "^3.0.0" + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/has-flag": { + "node_modules/@react-native-community/cli-config/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -3772,76 +3929,42 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "node_modules/@react-native-community/cli-config/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", "dev": true, "dependencies": { - "path-key": "^2.0.0" + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" }, "engines": { "node": ">=4" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/@react-native-community/cli-config/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, "dependencies": { - "shebang-regex": "^1.0.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/@react-native-community/cli-config/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/supports-color": { + "node_modules/@react-native-community/cli-config/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -3853,43 +3976,49 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/@react-native-community/cli-debugger-ui": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.7.tgz", + "integrity": "sha512-UHUFrRdcjWSCdWG9KIp2QjuRIahBQnb9epnQI7JCq6NFbFHYfEI4rI7msjMn+gG8/tSwKTV2PTPuPmZ5wWlE7Q==", "dev": true, - "engines": { - "node": ">= 4.0.0" + "dependencies": { + "serve-static": "^1.13.1" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/@react-native-community/cli-doctor": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-12.3.7.tgz", + "integrity": "sha512-gCamZztRoAyhciuQPqdz4Xe4t3gOdNsaADNd+rva+Rx8W2PoPeNv60i7/et06wlsn6B6Sh0/hMiAftJbiHDFkg==", "dev": true, "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "@react-native-community/cli-config": "12.3.7", + "@react-native-community/cli-platform-android": "12.3.7", + "@react-native-community/cli-platform-ios": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "command-exists": "^1.2.8", + "deepmerge": "^4.3.0", + "envinfo": "^7.10.0", + "execa": "^5.0.0", + "hermes-profile-transformer": "^0.0.6", + "node-stream-zip": "^1.9.1", + "ora": "^5.4.1", + "semver": "^7.5.2", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1", + "yaml": "^2.2.1" } }, - "node_modules/@react-native-community/cli-platform-ios": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-5.0.2.tgz", - "integrity": "sha512-IAJ2B3j2BTsQUJZ4R6cVvnTbPq0Vza7+dOgP81ISz2BKRtQ0VqNFv+VOALH2jLaDzf4t7NFlskzIXFqWqy2BLg==", + "node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", "dev": true, - "dependencies": { - "@react-native-community/cli-tools": "^5.0.1", - "chalk": "^3.0.0", - "glob": "^7.1.3", - "js-yaml": "^3.13.1", - "lodash": "^4.17.15", - "plist": "^3.0.1", - "xcode": "^2.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/ansi-styles": { + "node_modules/@react-native-community/cli-doctor/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -3904,20 +4033,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "node_modules/@react-native-community/cli-doctor/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/color-convert": { + "node_modules/@react-native-community/cli-doctor/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -3929,75 +4061,114 @@ "node": ">=7.0.0" } }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/color-name": { + "node_modules/@react-native-community/cli-doctor/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@react-native-community/cli-doctor/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@react-native-community/cli-server-api": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-5.0.1.tgz", - "integrity": "sha512-OOxL+y9AOZayQzmSW+h5T54wQe+QBc/f67Y9QlWzzJhkKJdYx+S4VOooHoD5PFJzGbYaxhu2YF17p517pcEIIA==", + "node_modules/@react-native-community/cli-doctor/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "dependencies": { - "@react-native-community/cli-debugger-ui": "^5.0.1", - "@react-native-community/cli-tools": "^5.0.1", - "compression": "^1.7.1", - "connect": "^3.6.5", - "errorhandler": "^1.5.0", - "nocache": "^2.1.0", - "pretty-format": "^26.6.2", - "serve-static": "^1.13.1", - "ws": "^1.1.0" + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/@react-native-community/cli-server-api/node_modules/ws": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz", - "integrity": "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==", + "node_modules/@react-native-community/cli-doctor/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "options": ">=0.0.5", - "ultron": "1.0.x" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@react-native-community/cli-tools": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-5.0.1.tgz", - "integrity": "sha512-XOX5w98oSE8+KnkMZZPMRT7I5TaP8fLbDl0tCu40S7Epz+Zz924n80fmdu6nUDIfPT1nV6yH1hmHmWAWTDOR+Q==", + "node_modules/@react-native-community/cli-doctor/node_modules/yaml": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", + "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + } + }, + "node_modules/@react-native-community/cli-hermes": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-12.3.7.tgz", + "integrity": "sha512-ezzeiSKjRXK2+i1AAe7NhhN9CEHrgtRmTn2MAdBpE++N8fH5EQZgxFcGgGdwGvns2fm9ivyyeVnI5eAYwvM+jg==", "dev": true, "dependencies": { - "chalk": "^3.0.0", - "lodash": "^4.17.15", - "mime": "^2.4.1", - "node-fetch": "^2.6.0", - "open": "^6.2.0", - "shell-quote": "1.6.1" + "@react-native-community/cli-platform-android": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "hermes-profile-transformer": "^0.0.6" } }, - "node_modules/@react-native-community/cli-tools/node_modules/ansi-styles": { + "node_modules/@react-native-community/cli-hermes/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -4012,20 +4183,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@react-native-community/cli-tools/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "node_modules/@react-native-community/cli-hermes/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@react-native-community/cli-tools/node_modules/color-convert": { + "node_modules/@react-native-community/cli-hermes/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -4037,13 +4211,13 @@ "node": ">=7.0.0" } }, - "node_modules/@react-native-community/cli-tools/node_modules/color-name": { + "node_modules/@react-native-community/cli-hermes/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/@react-native-community/cli-tools/node_modules/has-flag": { + "node_modules/@react-native-community/cli-hermes/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -4052,7 +4226,7 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli-tools/node_modules/supports-color": { + "node_modules/@react-native-community/cli-hermes/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -4064,25 +4238,21 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli-types": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-5.0.1.tgz", - "integrity": "sha512-BesXnuFFlU/d1F3+sHhvKt8fUxbQlAbZ3hhMEImp9A6sopl8TEtryUGJ1dbazGjRXcADutxvjwT/i3LJVTIQug==", + "node_modules/@react-native-community/cli-platform-android": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-12.3.7.tgz", + "integrity": "sha512-mOltF3cpjNdJb3WSFwEHc1GH4ibCcnOvQ34OdWyblKy9ijuvG5SjNTlYR/UW/CURaDi3OUKAhxQMTY5d27bzGQ==", "dev": true, "dependencies": { - "ora": "^3.4.0" - } - }, - "node_modules/@react-native-community/cli/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "dev": true, - "engines": { - "node": ">=6" + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-xml-parser": "^4.2.4", + "glob": "^7.1.3", + "logkitty": "^0.7.1" } }, - "node_modules/@react-native-community/cli/node_modules/ansi-styles": { + "node_modules/@react-native-community/cli-platform-android/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -4097,20 +4267,23 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@react-native-community/cli/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "node_modules/@react-native-community/cli-platform-android/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@react-native-community/cli/node_modules/color-convert": { + "node_modules/@react-native-community/cli-platform-android/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", @@ -4122,147 +4295,452 @@ "node": ">=7.0.0" } }, - "node_modules/@react-native-community/cli/node_modules/color-name": { + "node_modules/@react-native-community/cli-platform-android/node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/@react-native-community/cli/node_modules/cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "node_modules/@react-native-community/cli-platform-android/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@react-native-community/cli/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/@react-native-community/cli-platform-android/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, "engines": { - "node": ">=4.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli/node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/@react-native-community/cli-platform-android/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "bin": { - "semver": "bin/semver" + "engines": { + "node": ">=8" } }, - "node_modules/@react-native-community/cli/node_modules/deepmerge": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz", - "integrity": "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==", + "node_modules/@react-native-community/cli-platform-android/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10.17.0" } }, - "node_modules/@react-native-community/cli/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "node_modules/@react-native-community/cli-platform-android/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/@react-native-community/cli/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/@react-native-community/cli-platform-ios": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.3.7.tgz", + "integrity": "sha512-2WnVsMH4ORZIhBm/5nCms1NeeKG4KarNC7PMLmrXWXB/bibDcaNsjrJiqnmCUcpTEvTQTokRfoO7Aj6NM0Cqow==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-xml-parser": "^4.0.12", + "glob": "^7.1.3", + "ora": "^5.4.1" } }, - "node_modules/@react-native-community/cli/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "node_modules/@react-native-community/cli-platform-ios/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@react-native-community/cli/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "node_modules/@react-native-community/cli-platform-ios/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "pump": "^3.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@react-native-community/cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@react-native-community/cli-platform-ios/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">=8" + "node": ">=7.0.0" } }, - "node_modules/@react-native-community/cli/node_modules/import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "node_modules/@react-native-community/cli-platform-ios/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@react-native-community/cli-platform-ios/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@react-native-community/cli/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "node_modules/@react-native-community/cli-platform-ios/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli-platform-ios/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-platform-ios/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@react-native-community/cli-platform-ios/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-plugin-metro": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.3.7.tgz", + "integrity": "sha512-ahEw0Vfnv2Nv/jdZ2QDuGjQ9l2SczO4lXjb3ubu5vEYNLyTw3jYsLMK6iES7YQ/ApQmKdG476HU1O9uZdpaYPg==", + "dev": true + }, + "node_modules/@react-native-community/cli-server-api": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-12.3.7.tgz", + "integrity": "sha512-LYETs3CCjrLn1ZU0kYv44TywiIl5IPFHZGeXhAh2TtgOk4mo3kvXxECDil9CdO3bmDra6qyiG61KHvzr8IrHdg==", + "dev": true, + "dependencies": { + "@react-native-community/cli-debugger-ui": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "compression": "^1.7.1", + "connect": "^3.6.5", + "errorhandler": "^1.5.1", + "nocache": "^3.0.1", + "pretty-format": "^26.6.2", + "serve-static": "^1.13.1", + "ws": "^7.5.1" + } + }, + "node_modules/@react-native-community/cli-tools": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-12.3.7.tgz", + "integrity": "sha512-7NL/1/i+wzd4fBr/FSr3ypR05tiU/Kv9l/M1sL1c6jfcDtWXAL90R161gQkQFK7shIQ8Idp0dQX1rq49tSyfQw==", + "dev": true, + "dependencies": { + "appdirsjs": "^1.2.4", + "chalk": "^4.1.2", + "find-up": "^5.0.0", + "mime": "^2.4.1", + "node-fetch": "^2.6.0", + "open": "^6.2.0", + "ora": "^5.4.1", + "semver": "^7.5.2", + "shell-quote": "^1.7.3", + "sudo-prompt": "^9.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@react-native-community/cli-tools/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli-types": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-12.3.7.tgz", + "integrity": "sha512-NFtUMyIrNfi3A5C1cjVKDVvYHvvOF7MnOMwdD8jm2NQKewQJrehKBh1eMuykKdqhWyZmuemD4KKhL8f4FxgG0w==", + "dev": true, + "dependencies": { + "joi": "^17.2.1" + } + }, + "node_modules/@react-native-community/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native-community/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native-community/cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@react-native-community/cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@react-native-community/cli/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@react-native-community/cli/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@react-native-community/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" } }, "node_modules/@react-native-community/cli/node_modules/jsonfile": { @@ -4286,18 +4764,6 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dev": true, - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/@react-native-community/cli/node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", @@ -4325,200 +4791,460 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "node_modules/@react-native-community/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@react-native-community/eslint-config": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@react-native-community/eslint-config/-/eslint-config-2.0.0.tgz", + "integrity": "sha512-vHaMMfvMp9BWCQQ0lNIXibOJTcXIbYUQ8dSUsMOsrXgVkeVQJj88OwrKS00rQyqwMaC4/a6HuDiFzYUkGKOpVg==", + "dev": true, + "dependencies": { + "@react-native-community/eslint-plugin": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^3.1.0", + "@typescript-eslint/parser": "^3.1.0", + "babel-eslint": "^10.1.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-eslint-comments": "^3.1.2", + "eslint-plugin-flowtype": "2.50.3", + "eslint-plugin-jest": "22.4.1", + "eslint-plugin-prettier": "3.1.2", + "eslint-plugin-react": "^7.20.0", + "eslint-plugin-react-hooks": "^4.0.4", + "eslint-plugin-react-native": "^3.8.1", + "prettier": "^2.0.2" + }, + "peerDependencies": { + "eslint": ">=6" + } + }, + "node_modules/@react-native-community/eslint-config/node_modules/eslint-config-prettier": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz", + "integrity": "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==", + "dev": true, + "dependencies": { + "get-stdin": "^6.0.0" + }, + "bin": { + "eslint-config-prettier-check": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=3.14.1" + } + }, + "node_modules/@react-native-community/eslint-config/node_modules/eslint-plugin-prettier": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz", + "integrity": "sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=6.0.0" }, + "peerDependencies": { + "eslint": ">= 5.0.0", + "prettier": ">= 1.13.0" + } + }, + "node_modules/@react-native-community/eslint-config/node_modules/get-stdin": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", + "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", + "dev": true, "engines": { "node": ">=4" } }, - "node_modules/@react-native-community/cli/node_modules/path-key": { + "node_modules/@react-native-community/eslint-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz", + "integrity": "sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==", + "dev": true + }, + "node_modules/@react-native/assets-registry": { + "version": "0.73.1", + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.73.1.tgz", + "integrity": "sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==", + "dev": true, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-plugin-codegen": { + "version": "0.73.4", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.73.4.tgz", + "integrity": "sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==", + "dev": true, + "dependencies": { + "@react-native/codegen": "0.73.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-preset": { + "version": "0.73.21", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.73.21.tgz", + "integrity": "sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/plugin-proposal-async-generator-functions": "^7.0.0", + "@babel/plugin-proposal-class-properties": "^7.18.0", + "@babel/plugin-proposal-export-default-from": "^7.0.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0", + "@babel/plugin-proposal-numeric-separator": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-default-from": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.18.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", + "@babel/plugin-syntax-optional-chaining": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.20.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.20.0", + "@babel/plugin-transform-flow-strip-types": "^7.20.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-react-jsx-self": "^7.0.0", + "@babel/plugin-transform-react-jsx-source": "^7.0.0", + "@babel/plugin-transform-runtime": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-sticky-regex": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.5.0", + "@babel/plugin-transform-unicode-regex": "^7.0.0", + "@babel/template": "^7.0.0", + "@react-native/babel-plugin-codegen": "0.73.4", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/codegen": { + "version": "0.73.3", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.73.3.tgz", + "integrity": "sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.0", + "flow-parser": "^0.206.0", + "glob": "^7.1.1", + "invariant": "^2.2.4", + "jscodeshift": "^0.14.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/@react-native/community-cli-plugin": { + "version": "0.73.18", + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.18.tgz", + "integrity": "sha512-RN8piDh/eF+QT6YYmrj3Zd9uiaDsRY/kMT0FYR42j8/M/boE4hs4Xn0u91XzT8CAkU9q/ilyo3wJsXIJo2teww==", + "dev": true, + "dependencies": { + "@react-native-community/cli-server-api": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "@react-native/dev-middleware": "0.73.8", + "@react-native/metro-babel-transformer": "0.73.15", + "chalk": "^4.0.0", + "execa": "^5.1.1", + "metro": "^0.80.3", + "metro-config": "^0.80.3", + "metro-core": "^0.80.3", + "node-fetch": "^2.2.0", + "readline": "^1.3.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">=4" + "node": ">=7.0.0" } }, - "node_modules/@react-native-community/cli/node_modules/resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "node_modules/@react-native/community-cli-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@react-native/community-cli-plugin/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/@react-native-community/cli/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/@react-native/community-cli-plugin/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/@react-native/community-cli-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "shebang-regex": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/@react-native-community/cli/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/@react-native/debugger-frontend": { + "version": "0.73.3", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.73.3.tgz", + "integrity": "sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@react-native-community/cli/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/@react-native/dev-middleware": { + "version": "0.73.8", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.73.8.tgz", + "integrity": "sha512-oph4NamCIxkMfUL/fYtSsE+JbGOnrlawfQ0kKtDQ5xbOjPKotKoXqrs1eGwozNKv7FfQ393stk1by9a6DyASSg==", + "dev": true, + "dependencies": { + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.73.3", + "chrome-launcher": "^0.15.2", + "chromium-edge-launcher": "^1.0.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "node-fetch": "^2.2.0", + "open": "^7.0.3", + "serve-static": "^1.13.1", + "temp-dir": "^2.0.0", + "ws": "^6.2.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" + "ms": "2.0.0" } }, - "node_modules/@react-native-community/cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@react-native/dev-middleware/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/@react-native/dev-middleware/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/@react-native/dev-middleware/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", "dev": true, - "engines": { - "node": ">= 4.0.0" + "dependencies": { + "async-limiter": "~1.0.0" } }, - "node_modules/@react-native-community/cli/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/@react-native/gradle-plugin": { + "version": "0.73.5", + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.73.5.tgz", + "integrity": "sha512-Orrn8J/kqzEuXudl96XcZk84ZcdIpn1ojjwGSuaSQSXNcCYbOXyt0RwtW5kjCqjgSzGnOMsJNZc5FDXHVq/WzA==", "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "engines": { + "node": ">=18" } }, - "node_modules/@react-native-community/eslint-config": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@react-native-community/eslint-config/-/eslint-config-2.0.0.tgz", - "integrity": "sha512-vHaMMfvMp9BWCQQ0lNIXibOJTcXIbYUQ8dSUsMOsrXgVkeVQJj88OwrKS00rQyqwMaC4/a6HuDiFzYUkGKOpVg==", + "node_modules/@react-native/js-polyfills": { + "version": "0.73.1", + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.73.1.tgz", + "integrity": "sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==", "dev": true, - "dependencies": { - "@react-native-community/eslint-plugin": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^3.1.0", - "@typescript-eslint/parser": "^3.1.0", - "babel-eslint": "^10.1.0", - "eslint-config-prettier": "^6.10.1", - "eslint-plugin-eslint-comments": "^3.1.2", - "eslint-plugin-flowtype": "2.50.3", - "eslint-plugin-jest": "22.4.1", - "eslint-plugin-prettier": "3.1.2", - "eslint-plugin-react": "^7.20.0", - "eslint-plugin-react-hooks": "^4.0.4", - "eslint-plugin-react-native": "^3.8.1", - "prettier": "^2.0.2" - }, - "peerDependencies": { - "eslint": ">=6" + "engines": { + "node": ">=18" } }, - "node_modules/@react-native-community/eslint-config/node_modules/eslint-config-prettier": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz", - "integrity": "sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw==", + "node_modules/@react-native/metro-babel-transformer": { + "version": "0.73.15", + "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.73.15.tgz", + "integrity": "sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw==", "dev": true, "dependencies": { - "get-stdin": "^6.0.0" + "@babel/core": "^7.20.0", + "@react-native/babel-preset": "0.73.21", + "hermes-parser": "0.15.0", + "nullthrows": "^1.1.1" }, - "bin": { - "eslint-config-prettier-check": "bin/cli.js" + "engines": { + "node": ">=18" }, "peerDependencies": { - "eslint": ">=3.14.1" + "@babel/core": "*" } }, - "node_modules/@react-native-community/eslint-config/node_modules/eslint-plugin-prettier": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz", - "integrity": "sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA==", + "node_modules/@react-native/normalize-colors": { + "version": "0.73.2", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.73.2.tgz", + "integrity": "sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==", + "dev": true + }, + "node_modules/@react-native/virtualized-lists": { + "version": "0.73.4", + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.73.4.tgz", + "integrity": "sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==", "dev": true, "dependencies": { - "prettier-linter-helpers": "^1.0.0" + "invariant": "^2.2.4", + "nullthrows": "^1.1.1" }, "engines": { - "node": ">=6.0.0" + "node": ">=18" }, "peerDependencies": { - "eslint": ">= 5.0.0", - "prettier": ">= 1.13.0" - } - }, - "node_modules/@react-native-community/eslint-config/node_modules/get-stdin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", - "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", - "dev": true, - "engines": { - "node": ">=4" + "react-native": "*" } }, - "node_modules/@react-native-community/eslint-plugin": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz", - "integrity": "sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==", - "dev": true - }, - "node_modules/@react-native/assets": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz", - "integrity": "sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==", - "dev": true - }, - "node_modules/@react-native/normalize-color": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-1.0.0.tgz", - "integrity": "sha512-xUNRvNmCl3UGCPbbHvfyFMnpvLPoOjDCcp5bT9m2k+TF/ZBklEQwhPZlkrxRx2NhgFh1X3a5uL7mJ7ZR+8G7Qg==", - "dev": true - }, - "node_modules/@react-native/polyfills": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@react-native/polyfills/-/polyfills-1.0.0.tgz", - "integrity": "sha512-0jbp4RxjYopTsIdLl+/Fy2TiwVYHy4mgeu07DG4b/LyM0OS/+lPP5c9sbnt/AMlnF6qz2JRZpPpGw1eMNS6A4w==", - "dev": true - }, "node_modules/@sideway/address": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", @@ -4540,6 +5266,12 @@ "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", "dev": true }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, "node_modules/@sinonjs/commons": { "version": "1.8.6", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", @@ -4898,15 +5630,6 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@xmldom/xmldom": { - "version": "0.8.10", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", - "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/abab": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", @@ -4926,12 +5649,6 @@ "node": ">=6.5" } }, - "node_modules/absolute-path": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz", - "integrity": "sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==", - "dev": true - }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", @@ -4945,6 +5662,15 @@ "node": ">= 0.6" } }, + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/acorn": { "version": "7.4.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", @@ -5186,12 +5912,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array-filter": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz", - "integrity": "sha512-VW0FpCIhjZdarWjIz8Vpva7U95fl2Jn+b+mmFFMLn8PIVscOQcAgEznwUzTEuUHuqZqIxwzRlcaN/urTFFQoiw==", - "dev": true - }, "node_modules/array-ify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", @@ -5218,21 +5938,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.1.tgz", - "integrity": "sha512-sxHIeJTGEsRC8/hYkZzdJNNPZ41EXHVys7pqMw1iwE/Kx8/hto0UbDuGQsSJ0ujPovj9qUZl6EOY/EiZ2g3d9Q==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-reduce": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz", - "integrity": "sha512-8jR+StqaC636u7h3ye1co3lQRefgVVUQUhuAmRbDqIMeR2yuXzRvkCNQiQ5J/wbREmoBLNtp13dhaaVpZQDRUw==", - "dev": true - }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", @@ -5370,9 +6075,9 @@ } }, "node_modules/ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", + "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", "dev": true, "dependencies": { "tslib": "^2.0.1" @@ -5390,15 +6095,6 @@ "node": ">=4" } }, - "node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "dependencies": { - "lodash": "^4.17.14" - } - }, "node_modules/async-limiter": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", @@ -5626,13 +6322,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", + "@babel/compat-data": "^7.27.7", + "@babel/helper-define-polyfill-provider": "^0.6.5", "semver": "^6.3.1" }, "peerDependencies": { @@ -5662,22 +6358,25 @@ } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" + "@babel/helper-define-polyfill-provider": "^0.6.5" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-plugin-syntax-trailing-function-commas": { - "version": "7.0.0-beta.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", - "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==", - "dev": true + "node_modules/babel-plugin-transform-flow-enums": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-flow": "^7.12.1" + } }, "node_modules/babel-preset-current-node-syntax": { "version": "1.1.0", @@ -5705,44 +6404,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/babel-preset-fbjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", - "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", - "dev": true, - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-syntax-class-properties": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-block-scoped-functions": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-for-of": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-member-expression-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-object-super": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-property-literals": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, "node_modules/babel-preset-jest": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", @@ -5815,40 +6476,30 @@ } ] }, - "node_modules/big-integer": { - "version": "1.6.52", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", - "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/bplist-creator": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.1.0.tgz", - "integrity": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==", + "node_modules/baseline-browser-mapping": { + "version": "2.8.20", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz", + "integrity": "sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==", "dev": true, - "dependencies": { - "stream-buffers": "2.2.x" + "bin": { + "baseline-browser-mapping": "dist/cli.js" } }, - "node_modules/bplist-parser": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.1.tgz", - "integrity": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==", + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "dependencies": { - "big-integer": "1.6.x" - }, - "engines": { - "node": ">= 5.10.0" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, "dependencies": { "balanced-match": "^1.0.0", @@ -5874,9 +6525,9 @@ "dev": true }, "node_modules/browserslist": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", - "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "version": "4.27.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz", + "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==", "dev": true, "funding": [ { @@ -5893,10 +6544,11 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001646", - "electron-to-chromium": "^1.5.4", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" + "baseline-browser-mapping": "^2.8.19", + "caniuse-lite": "^1.0.30001751", + "electron-to-chromium": "^1.5.238", + "node-releases": "^2.0.26", + "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" @@ -5914,6 +6566,30 @@ "node-int64": "^0.4.0" } }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -5921,9 +6597,9 @@ "dev": true }, "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "engines": { "node": ">= 0.8" @@ -5968,6 +6644,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -6037,9 +6726,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001651", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz", - "integrity": "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==", + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", "dev": true, "funding": [ { @@ -6056,37 +6745,105 @@ } ] }, - "node_modules/capture-exit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", - "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/chrome-launcher/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "dependencies": { - "rsvp": "^4.8.4" - }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/chromium-edge-launcher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", + "integrity": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0", + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "node_modules/chromium-edge-launcher/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "node_modules/chromium-edge-launcher/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, "engines": { "node": ">=10" } @@ -6153,15 +6910,15 @@ } }, "node_modules/cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { - "restore-cursor": "^2.0.0" + "restore-cursor": "^3.1.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/cli-spinners": { @@ -6260,15 +7017,6 @@ "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", "dev": true }, - "node_modules/colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true, - "engines": { - "node": ">=0.1.90" - } - }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -6288,10 +7036,13 @@ "dev": true }, "node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || >=14" + } }, "node_modules/commitlint": { "version": "11.0.0", @@ -6352,17 +7103,17 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "dev": true, "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { @@ -6494,12 +7245,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.38.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.0.tgz", - "integrity": "sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==", + "version": "3.46.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.46.0.tgz", + "integrity": "sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==", "dev": true, "dependencies": { - "browserslist": "^4.23.3" + "browserslist": "^4.26.3" }, "funding": { "type": "opencollective", @@ -6529,9 +7280,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -6647,9 +7398,9 @@ } }, "node_modules/dayjs": { - "version": "1.11.12", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.12.tgz", - "integrity": "sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==", + "version": "1.11.18", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.18.tgz", + "integrity": "sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==", "dev": true }, "node_modules/debug": { @@ -6844,6 +7595,20 @@ "node": ">= 0.8" } }, + "node_modules/deprecated-react-native-prop-types": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-5.0.0.tgz", + "integrity": "sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==", + "dev": true, + "dependencies": { + "@react-native/normalize-colors": "^0.73.0", + "invariant": "^2.2.4", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", @@ -6930,6 +7695,20 @@ "node": ">=8" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -6937,9 +7716,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.5.11", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.11.tgz", - "integrity": "sha512-R1CccCDYqndR25CaXFd6hp/u9RaaMcftMkphmvuepXr5b1vfLkRml6aWVeBhXJ7rbevHkKEMJtz8XqPf7ffmew==", + "version": "1.5.240", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.240.tgz", + "integrity": "sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==", "dev": true }, "node_modules/emittery": { @@ -6992,9 +7771,9 @@ } }, "node_modules/envinfo": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", - "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.19.0.tgz", + "integrity": "sha512-DoSM9VyG6O3vqBf+p3Gjgr/Q52HYBBtO3v+4koAxt1MnWr+zEnxE+nke/yXS4lt2P4SYCHQ4V3f1i88LQVOpAw==", "dev": true, "bin": { "envinfo": "dist/cli.js" @@ -7095,13 +7874,10 @@ } }, "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4" - }, "engines": { "node": ">= 0.4" } @@ -7141,9 +7917,9 @@ } }, "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dev": true, "dependencies": { "es-errors": "^1.3.0" @@ -7153,14 +7929,15 @@ } }, "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.4", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -7193,9 +7970,9 @@ } }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "engines": { "node": ">=6" @@ -7910,6 +8687,12 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, + "node_modules/exponential-backoff": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz", + "integrity": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==", + "dev": true + }, "node_modules/extend-shallow": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", @@ -8021,6 +8804,24 @@ "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", "dev": true }, + "node_modules/fast-xml-parser": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz", + "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "dependencies": { + "strnum": "^1.1.1" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, "node_modules/fastq": { "version": "1.17.1", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", @@ -8256,10 +9057,16 @@ "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, + "node_modules/flow-enums-runtime": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==", + "dev": true + }, "node_modules/flow-parser": { - "version": "0.121.0", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.121.0.tgz", - "integrity": "sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==", + "version": "0.206.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.206.0.tgz", + "integrity": "sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==", "dev": true, "engines": { "node": ">=0.4.0" @@ -8284,14 +9091,16 @@ } }, "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", "dev": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" }, "engines": { "node": ">= 6" @@ -8414,16 +9223,21 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -8441,6 +9255,19 @@ "node": ">=8.0.0" } }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/get-stdin": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", @@ -8613,12 +9440,12 @@ } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -8689,9 +9516,9 @@ } }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, "engines": { "node": ">= 0.4" @@ -8790,12 +9617,21 @@ "node": ">= 0.4" } }, - "node_modules/hermes-engine": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.7.2.tgz", - "integrity": "sha512-E2DkRaO97gwL98LPhgfkMqhHiNsrAjIfEk3wWYn2Y31xdkdWn0572H7RnVcGujMJVqZNJvtknxlpsUb8Wzc3KA==", + "node_modules/hermes-estree": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.15.0.tgz", + "integrity": "sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==", "dev": true }, + "node_modules/hermes-parser": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.15.0.tgz", + "integrity": "sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==", + "dev": true, + "dependencies": { + "hermes-estree": "0.15.0" + } + }, "node_modules/hermes-profile-transformer": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz", @@ -8809,12 +9645,12 @@ } }, "node_modules/hermes-profile-transformer/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", "dev": true, "engines": { - "node": ">= 8" + "node": ">= 12" } }, "node_modules/hosted-git-info": { @@ -9038,6 +9874,26 @@ "node": ">=0.10.0" } }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", @@ -9048,15 +9904,18 @@ } }, "node_modules/image-size": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.6.3.tgz", - "integrity": "sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.1.tgz", + "integrity": "sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==", "dev": true, + "dependencies": { + "queue": "6.0.2" + }, "bin": { "image-size": "bin/image-size.js" }, "engines": { - "node": ">=4.0" + "node": ">=16.x" } }, "node_modules/import-fresh": { @@ -9222,15 +10081,6 @@ "node": ">= 0.4" } }, - "node_modules/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -9240,12 +10090,6 @@ "loose-envify": "^1.0.0" } }, - "node_modules/ip": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz", - "integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==", - "dev": true - }, "node_modules/is-absolute": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", @@ -9367,9 +10211,9 @@ } }, "node_modules/is-core-module": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", - "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "dependencies": { "hasown": "^2.0.2" @@ -9450,7 +10294,6 @@ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, - "optional": true, "bin": { "is-docker": "cli.js" }, @@ -9562,6 +10405,15 @@ "node": ">=0.10.0" } }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/is-map": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", @@ -9806,6 +10658,18 @@ "node": ">=0.10.0" } }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-weakmap": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", @@ -9860,7 +10724,6 @@ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, - "optional": true, "dependencies": { "is-docker": "^2.0.0" }, @@ -11546,17 +12409,6 @@ "node": ">=8" } }, - "node_modules/jetifier": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/jetifier/-/jetifier-1.6.8.tgz", - "integrity": "sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==", - "dev": true, - "bin": { - "jetifier": "bin/jetify", - "jetifier-standalone": "bin/jetifier-standalone", - "jetify": "bin/jetify" - } - }, "node_modules/joi": { "version": "17.13.3", "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", @@ -11589,172 +12441,118 @@ } }, "node_modules/jsc-android": { - "version": "245459.0.0", - "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-245459.0.0.tgz", - "integrity": "sha512-wkjURqwaB1daNkDi2OYYbsLnIdC/lUM2nPXQKRs5pqEU9chDg435bjvo+LSaHotDENygHQDHe+ntUkkw2gwMtg==", + "version": "250231.0.0", + "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", + "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==", + "dev": true + }, + "node_modules/jsc-safe-url": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", + "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==", "dev": true }, "node_modules/jscodeshift": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.11.0.tgz", - "integrity": "sha512-SdRK2C7jjs4k/kT2mwtO07KJN9RnjxtKn03d9JVj6c3j9WwaLcFYsICYDnLAzY0hp+wG2nxl+Cm2jWLiNVYb8g==", - "dev": true, - "dependencies": { - "@babel/core": "^7.1.6", - "@babel/parser": "^7.1.6", - "@babel/plugin-proposal-class-properties": "^7.1.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.1.0", - "@babel/plugin-proposal-optional-chaining": "^7.1.0", - "@babel/plugin-transform-modules-commonjs": "^7.1.0", - "@babel/preset-flow": "^7.0.0", - "@babel/preset-typescript": "^7.1.0", - "@babel/register": "^7.0.0", + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", + "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.13.16", + "@babel/parser": "^7.13.16", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.12", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/preset-flow": "^7.13.13", + "@babel/preset-typescript": "^7.13.0", + "@babel/register": "^7.13.16", "babel-core": "^7.0.0-bridge.0", - "colors": "^1.1.2", - "flow-parser": "0.*", - "graceful-fs": "^4.2.4", - "micromatch": "^3.1.10", - "neo-async": "^2.5.0", - "node-dir": "^0.1.17", - "recast": "^0.20.3", - "temp": "^0.8.1", - "write-file-atomic": "^2.3.0" - }, - "bin": { - "jscodeshift": "bin/jscodeshift.js" - }, - "peerDependencies": { - "@babel/preset-env": "^7.1.6" - } - }, - "node_modules/jscodeshift/node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dev": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dev": true, - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.21.0", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" } }, - "node_modules/jscodeshift/node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/jscodeshift/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "is-extendable": "^0.1.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jscodeshift/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jscodeshift/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "node_modules/jscodeshift/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "kind-of": "^3.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jscodeshift/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/jscodeshift/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "color-name": "~1.1.4" }, "engines": { - "node": ">=0.10.0" + "node": ">=7.0.0" } }, - "node_modules/jscodeshift/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "node_modules/jscodeshift/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jscodeshift/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/jscodeshift/node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "node_modules/jscodeshift/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, "node_modules/jscodeshift/node_modules/write-file-atomic": { @@ -11827,15 +12625,15 @@ } }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-buffer": { @@ -11898,15 +12696,6 @@ "graceful-fs": "^4.1.6" } }, - "node_modules/jsonify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", - "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/jsonparse": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", @@ -11965,15 +12754,6 @@ "node": ">=0.10.0" } }, - "node_modules/klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.9" - } - }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", @@ -12005,6 +12785,31 @@ "node": ">= 0.8.0" } }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "dev": true, + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -12057,15 +12862,89 @@ "dev": true }, "node_modules/log-symbols": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", - "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "dependencies": { - "chalk": "^2.0.1" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/logkitty": { @@ -12177,6 +13056,27 @@ "node": ">= 12" } }, + "node_modules/marky": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.3.0.tgz", + "integrity": "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==", + "dev": true + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "dev": true + }, "node_modules/meow": { "version": "8.1.2", "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", @@ -12230,138 +13130,223 @@ } }, "node_modules/metro": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro/-/metro-0.64.0.tgz", - "integrity": "sha512-G2OC08Rzfs0kqnSEuKo2yZxR+/eNUpA93Ru45c60uN0Dw3HPrDi+ZBipgFftC6iLE0l+6hu8roFFIofotWxybw==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro/-/metro-0.80.12.tgz", + "integrity": "sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.0.0", - "@babel/core": "^7.0.0", - "@babel/generator": "^7.5.0", - "@babel/parser": "^7.0.0", + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", "@babel/template": "^7.0.0", - "@babel/traverse": "^7.0.0", - "@babel/types": "^7.0.0", - "absolute-path": "^0.0.0", + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", "accepts": "^1.3.7", - "async": "^2.4.0", "chalk": "^4.0.0", "ci-info": "^2.0.0", "connect": "^3.6.5", "debug": "^2.2.0", "denodeify": "^1.2.1", "error-stack-parser": "^2.0.6", - "fs-extra": "^1.0.0", - "graceful-fs": "^4.1.3", - "image-size": "^0.6.0", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "hermes-parser": "0.23.1", + "image-size": "^1.0.2", "invariant": "^2.2.4", - "jest-haste-map": "^26.5.2", - "jest-worker": "^26.0.0", + "jest-worker": "^29.6.3", + "jsc-safe-url": "^0.2.2", "lodash.throttle": "^4.1.1", - "metro-babel-register": "0.64.0", - "metro-babel-transformer": "0.64.0", - "metro-cache": "0.64.0", - "metro-cache-key": "0.64.0", - "metro-config": "0.64.0", - "metro-core": "0.64.0", - "metro-hermes-compiler": "0.64.0", - "metro-inspector-proxy": "0.64.0", - "metro-minify-uglify": "0.64.0", - "metro-react-native-babel-preset": "0.64.0", - "metro-resolver": "0.64.0", - "metro-runtime": "0.64.0", - "metro-source-map": "0.64.0", - "metro-symbolicate": "0.64.0", - "metro-transform-plugins": "0.64.0", - "metro-transform-worker": "0.64.0", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-config": "0.80.12", + "metro-core": "0.80.12", + "metro-file-map": "0.80.12", + "metro-resolver": "0.80.12", + "metro-runtime": "0.80.12", + "metro-source-map": "0.80.12", + "metro-symbolicate": "0.80.12", + "metro-transform-plugins": "0.80.12", + "metro-transform-worker": "0.80.12", "mime-types": "^2.1.27", - "mkdirp": "^0.5.1", - "node-fetch": "^2.2.0", "nullthrows": "^1.1.1", - "rimraf": "^2.5.4", "serialize-error": "^2.1.0", "source-map": "^0.5.6", "strip-ansi": "^6.0.0", - "temp": "0.8.3", "throat": "^5.0.0", - "ws": "^1.1.5", - "yargs": "^15.3.1" + "ws": "^7.5.10", + "yargs": "^17.6.2" + }, + "bin": { + "metro": "src/cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz", + "integrity": "sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "hermes-parser": "0.23.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==", + "dev": true + }, + "node_modules/metro-babel-transformer/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "dev": true, + "dependencies": { + "hermes-estree": "0.23.1" + } + }, + "node_modules/metro-cache": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.80.12.tgz", + "integrity": "sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==", + "dev": true, + "dependencies": { + "exponential-backoff": "^3.1.1", + "flow-enums-runtime": "^0.0.6", + "metro-core": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-cache-key": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.80.12.tgz", + "integrity": "sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==", + "dev": true, + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-config": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.80.12.tgz", + "integrity": "sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==", + "dev": true, + "dependencies": { + "connect": "^3.6.5", + "cosmiconfig": "^5.0.5", + "flow-enums-runtime": "^0.0.6", + "jest-validate": "^29.6.3", + "metro": "0.80.12", + "metro-cache": "0.80.12", + "metro-core": "0.80.12", + "metro-runtime": "0.80.12" }, - "bin": { - "metro": "src/cli.js" + "engines": { + "node": ">=18" } }, - "node_modules/metro-babel-register": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-babel-register/-/metro-babel-register-0.64.0.tgz", - "integrity": "sha512-Kf6YvE3kIRumGnjK0Q9LqGDIdnsX9eFGtNBmBuCVDuB9wGGA/5CgX8We8W7Y44dz1RGTcHJRhfw5iGg+pwC3aQ==", + "node_modules/metro-config/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@babel/core": "^7.0.0", - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-proposal-optional-chaining": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/register": "^7.0.0", - "escape-string-regexp": "^1.0.5" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro-babel-transformer": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.64.0.tgz", - "integrity": "sha512-itZaxKTgmKGEZWxNzbSZBc22NngrMZzoUNuU92aHSTGkYi2WH4XlvzEHsstmIKHMsRVKl75cA+mNmgk4gBFJKw==", + "node_modules/metro-config/node_modules/@types/yargs": { + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.34.tgz", + "integrity": "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A==", "dev": true, "dependencies": { - "@babel/core": "^7.0.0", - "metro-source-map": "0.64.0", - "nullthrows": "^1.1.1" + "@types/yargs-parser": "*" } }, - "node_modules/metro-cache": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.64.0.tgz", - "integrity": "sha512-QvGfxe/1QQYM9XOlR8W1xqE9eHDw/AgJIgYGn/TxZxBu9Zga+Rgs1omeSZju45D8w5VWgMr83ma5kACgzvOecg==", + "node_modules/metro-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "metro-core": "0.64.0", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/metro-cache-key": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.64.0.tgz", - "integrity": "sha512-O9B65G8L/fopck45ZhdRosyVZdMtUQuX5mBWEC1NRj02iWBIUPLmYMjrunqIe8vHipCMp3DtTCm/65IlBmO8jg==", - "dev": true + "node_modules/metro-config/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/metro-cache/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", + "node_modules/metro-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "glob": "^7.1.3" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/metro-config": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.64.0.tgz", - "integrity": "sha512-QhM4asnX5KhlRWaugwVGNNXhX0Z85u5nK0UQ/A90bBb4xWyXqUe20e788VtdA75rkQiiI6wXTCIHWT0afbnjwQ==", + "node_modules/metro-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "cosmiconfig": "^5.0.5", - "jest-validate": "^26.5.2", - "metro": "0.64.0", - "metro-cache": "0.64.0", - "metro-core": "0.64.0", - "metro-runtime": "0.64.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, + "node_modules/metro-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, "node_modules/metro-config/node_modules/cosmiconfig": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", @@ -12377,6 +13362,15 @@ "node": ">=4" } }, + "node_modules/metro-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/metro-config/node_modules/import-fresh": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", @@ -12390,6 +13384,32 @@ "node": ">=4" } }, + "node_modules/metro-config/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/metro-config/node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/metro-config/node_modules/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -12403,6 +13423,38 @@ "node": ">=4" } }, + "node_modules/metro-config/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/metro-config/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/metro-config/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, "node_modules/metro-config/node_modules/resolve-from": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", @@ -12412,39 +13464,160 @@ "node": ">=4" } }, + "node_modules/metro-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/metro-core": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.64.0.tgz", - "integrity": "sha512-v8ZQ5j72EaUwamQ8pLfHlOHTyp7SbdazvHPzFGDpHnwIQqIT0Bw3Syg8R4regTlVG3ngpeSEAi005UITljmMcQ==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.80.12.tgz", + "integrity": "sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==", "dev": true, "dependencies": { - "jest-haste-map": "^26.5.2", + "flow-enums-runtime": "^0.0.6", "lodash.throttle": "^4.1.1", - "metro-resolver": "0.64.0" + "metro-resolver": "0.80.12" + }, + "engines": { + "node": ">=18" } }, - "node_modules/metro-hermes-compiler": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-hermes-compiler/-/metro-hermes-compiler-0.64.0.tgz", - "integrity": "sha512-CLAjVDWGAoGhbi2ZyPHnH5YDdfrDIx6+tzFWfHGIMTZkYBXsYta9IfYXBV8lFb6BIbrXLjlXZAOoosknetMPOA==", - "dev": true - }, - "node_modules/metro-inspector-proxy": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.64.0.tgz", - "integrity": "sha512-KywbH3GNSz9Iqw4UH3smgaV2dBHHYMISeN7ORntDL/G+xfgPc6vt13d+zFb907YpUcXj5N0vdoiAHI5V/0y8IA==", + "node_modules/metro-file-map": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.80.12.tgz", + "integrity": "sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==", "dev": true, "dependencies": { - "connect": "^3.6.5", + "anymatch": "^3.0.3", "debug": "^2.2.0", - "ws": "^1.1.5", - "yargs": "^15.3.1" + "fb-watchman": "^2.0.0", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "invariant": "^2.2.4", + "jest-worker": "^29.6.3", + "micromatch": "^4.0.4", + "node-abort-controller": "^3.1.1", + "nullthrows": "^1.1.1", + "walker": "^1.0.7" }, - "bin": { - "metro-inspector-proxy": "src/cli.js" + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/metro-inspector-proxy/node_modules/debug": { + "node_modules/metro-file-map/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/metro-file-map/node_modules/@types/yargs": { + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.34.tgz", + "integrity": "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/metro-file-map/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/metro-file-map/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/metro-file-map/node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/metro-file-map/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/metro-file-map/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/metro-file-map/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/metro-file-map/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", @@ -12453,127 +13626,124 @@ "ms": "2.0.0" } }, - "node_modules/metro-inspector-proxy/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/metro-inspector-proxy/node_modules/ws": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz", - "integrity": "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==", + "node_modules/metro-file-map/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "options": ">=0.0.5", - "ultron": "1.0.x" + "engines": { + "node": ">=8" } }, - "node_modules/metro-minify-uglify": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.64.0.tgz", - "integrity": "sha512-DRwRstqXR5qfte9Nuwoov5dRXxL7fJeVlO5fGyOajWeO3+AgPjvjXh/UcLJqftkMWTPGUFuzAD5/7JC5v5FLWw==", + "node_modules/metro-file-map/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { - "uglify-es": "^3.1.9" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro-react-native-babel-preset": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.64.0.tgz", - "integrity": "sha512-HcZ0RWQRuJfpPiaHyFQJzcym+/dDIVUPwUAXWoub/C4GkGu+mPjp8vqK6g0FxokCnnI2TK0gZTza2IDfiNNscQ==", + "node_modules/metro-file-map/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { - "@babel/core": "^7.0.0", - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-export-default-from": "^7.0.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", - "@babel/plugin-proposal-optional-chaining": "^7.0.0", - "@babel/plugin-syntax-dynamic-import": "^7.0.0", - "@babel/plugin-syntax-export-default-from": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.2.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-syntax-optional-chaining": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-exponentiation-operator": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-for-of": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-object-assign": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-react-jsx-self": "^7.0.0", - "@babel/plugin-transform-react-jsx-source": "^7.0.0", - "@babel/plugin-transform-regenerator": "^7.0.0", - "@babel/plugin-transform-runtime": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-sticky-regex": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "@babel/plugin-transform-typescript": "^7.5.0", - "@babel/plugin-transform-unicode-regex": "^7.0.0", - "@babel/template": "^7.0.0", - "react-refresh": "^0.4.0" + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/metro-file-map/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/metro-file-map/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, - "peerDependencies": { - "@babel/core": "*" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/metro-react-native-babel-transformer": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.64.0.tgz", - "integrity": "sha512-K1sHO3ODBFCr7uEiCQ4RvVr+cQg0EHQF8ChVPnecGh/WDD8udrTq9ECwB0dRfMjAvlsHtRUlJm6ZSI8UPgum2w==", + "node_modules/metro-minify-terser": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz", + "integrity": "sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==", "dev": true, "dependencies": { - "@babel/core": "^7.0.0", - "babel-preset-fbjs": "^3.3.0", - "metro-babel-transformer": "0.64.0", - "metro-react-native-babel-preset": "0.64.0", - "metro-source-map": "0.64.0", - "nullthrows": "^1.1.1" + "flow-enums-runtime": "^0.0.6", + "terser": "^5.15.0" }, - "peerDependencies": { - "@babel/core": "*" + "engines": { + "node": ">=18" } }, "node_modules/metro-resolver": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.64.0.tgz", - "integrity": "sha512-cJ26Id8Zf+HmS/1vFwu71K3u7ep/+HeXXAJIeVDYf+niE7AWB9FijyMtAlQgbD8elWqv1leJCnQ/xHRFBfGKYA==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.80.12.tgz", + "integrity": "sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==", "dev": true, "dependencies": { - "absolute-path": "^0.0.0" + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-runtime": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.64.0.tgz", - "integrity": "sha512-m7XbWOaIOeFX7YcxUhmnOi6Pg8EaeL89xyZ+quZyZVF1aNoTr4w8FfbKxvijpjsytKHIZtd+43m2Wt5JrqyQmQ==", - "dev": true + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.80.12.tgz", + "integrity": "sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.25.0", + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } }, "node_modules/metro-source-map": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.64.0.tgz", - "integrity": "sha512-OCG2rtcp5cLEGYvAbfkl6mEc0J2FPRP4/UCEly+juBk7hawS9bCBMBfhJm/HIsvY1frk6nT2Vsl1O8YBbwyx2g==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.80.12.tgz", + "integrity": "sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==", "dev": true, "dependencies": { - "@babel/traverse": "^7.0.0", - "@babel/types": "^7.0.0", + "@babel/traverse": "^7.20.0", + "@babel/types": "^7.20.0", + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "metro-symbolicate": "0.64.0", + "metro-symbolicate": "0.80.12", "nullthrows": "^1.1.1", - "ob1": "0.64.0", + "ob1": "0.80.12", "source-map": "^0.5.6", "vlq": "^1.0.0" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-source-map/node_modules/source-map": { @@ -12586,13 +13756,14 @@ } }, "node_modules/metro-symbolicate": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.64.0.tgz", - "integrity": "sha512-qIi+YRrDWnLVmydj6gwidYLPaBsakZRibGWSspuXgHAxOI3UuLwlo4dpQ73Et0gyHjI7ZvRMRY8JPiOntf9AQQ==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz", + "integrity": "sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==", "dev": true, "dependencies": { + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "metro-source-map": "0.64.0", + "metro-source-map": "0.80.12", "nullthrows": "^1.1.1", "source-map": "^0.5.6", "through2": "^2.0.1", @@ -12602,7 +13773,7 @@ "metro-symbolicate": "src/index.js" }, "engines": { - "node": ">=8.3" + "node": ">=18" } }, "node_modules/metro-symbolicate/node_modules/isarray": { @@ -12626,6 +13797,12 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/metro-symbolicate/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, "node_modules/metro-symbolicate/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", @@ -12655,37 +13832,70 @@ } }, "node_modules/metro-transform-plugins": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.64.0.tgz", - "integrity": "sha512-iTIRBD/wBI98plfxj8jAoNUUXfXLNlyvcjPtshhpGvdwu9pzQilGfnDnOaaK+vbITcOk9w5oQectXyJwAqTr1A==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz", + "integrity": "sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==", "dev": true, "dependencies": { - "@babel/core": "^7.0.0", - "@babel/generator": "^7.5.0", + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", "@babel/template": "^7.0.0", - "@babel/traverse": "^7.0.0", + "@babel/traverse": "^7.20.0", + "flow-enums-runtime": "^0.0.6", "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-transform-worker": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.64.0.tgz", - "integrity": "sha512-wegRtK8GyLF6IPZRBJp+zsORgA4iX0h1DRpknyAMDCtSbJ4VU2xV/AojteOgAsDvY3ucAGsvfuZLNDJHUdUNHQ==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz", + "integrity": "sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/generator": "^7.20.0", + "@babel/parser": "^7.20.0", + "@babel/types": "^7.20.0", + "flow-enums-runtime": "^0.0.6", + "metro": "0.80.12", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-minify-terser": "0.80.12", + "metro-source-map": "0.80.12", + "metro-transform-plugins": "0.80.12", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { - "@babel/core": "^7.0.0", - "@babel/generator": "^7.5.0", - "@babel/parser": "^7.0.0", - "@babel/types": "^7.0.0", - "babel-preset-fbjs": "^3.3.0", - "metro": "0.64.0", - "metro-babel-transformer": "0.64.0", - "metro-cache": "0.64.0", - "metro-cache-key": "0.64.0", - "metro-hermes-compiler": "0.64.0", - "metro-source-map": "0.64.0", - "metro-transform-plugins": "0.64.0", - "nullthrows": "^1.1.1" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/metro/node_modules/@types/yargs": { + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.34.tgz", + "integrity": "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" } }, "node_modules/metro/node_modules/ansi-styles": { @@ -12719,6 +13929,20 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/metro/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, "node_modules/metro/node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -12746,17 +13970,6 @@ "ms": "2.0.0" } }, - "node_modules/metro/node_modules/fs-extra": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", - "integrity": "sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0" - } - }, "node_modules/metro/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -12766,34 +13979,89 @@ "node": ">=8" } }, - "node_modules/metro/node_modules/jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", + "node_modules/metro/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==", + "dev": true + }, + "node_modules/metro/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "dependencies": { + "hermes-estree": "0.23.1" } }, - "node_modules/metro/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "node_modules/metro/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "node_modules/metro/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", + "node_modules/metro/node_modules/jest-util/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/metro/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { - "glob": "^7.1.3" + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/metro/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/metro/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, "node_modules/metro/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", @@ -12815,20 +14083,63 @@ "node": ">=8" } }, - "node_modules/metro/node_modules/ws": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz", - "integrity": "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==", + "node_modules/metro/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/metro/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/metro/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "dependencies": { - "options": ">=0.0.5", - "ultron": "1.0.x" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/metro/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" } }, "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "dependencies": { "braces": "^3.0.3", @@ -12984,9 +14295,9 @@ "dev": true }, "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", "dev": true, "engines": { "node": ">= 0.6" @@ -13005,14 +14316,20 @@ "dev": true }, "node_modules/nocache": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz", - "integrity": "sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz", + "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==", "dev": true, "engines": { - "node": ">=4.0.0" + "node": ">=12.0.0" } }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "dev": true + }, "node_modules/node-dir": { "version": "0.1.17", "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", @@ -13089,9 +14406,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "version": "2.0.26", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.26.tgz", + "integrity": "sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==", "dev": true }, "node_modules/node-stream-zip": { @@ -13156,15 +14473,22 @@ "dev": true }, "node_modules/ob1": { - "version": "0.64.0", - "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.64.0.tgz", - "integrity": "sha512-CO1N+5dhvy+MoAwxz8+fymEUcwsT4a+wHhrHFb02LppcJdHxgcBWviwEhUwKOD2kLMQ7ijrrzybOqpGcqEtvpQ==", - "dev": true + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.80.12.tgz", + "integrity": "sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==", + "dev": true, + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -13345,9 +14669,9 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", "dev": true, "engines": { "node": ">= 0.8" @@ -13424,60 +14748,97 @@ "node": ">= 0.8.0" } }, - "node_modules/options": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", - "integrity": "sha512-bOj3L1ypm++N+n7CEbbe473A414AB7z+amKYshRb//iuL3MpdDCLhPnw6aVTdKB9g5ZRVHIEp8eUln6L2NUStg==", - "dev": true, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, "engines": { - "node": ">=0.4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/ora/-/ora-3.4.0.tgz", - "integrity": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==", + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-spinners": "^2.0.0", - "log-symbols": "^2.2.0", - "strip-ansi": "^5.2.0", - "wcwidth": "^1.0.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/ora/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/ora/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "ansi-regex": "^4.1.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=6" + "node": ">=7.0.0" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/ora/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, "node_modules/p-each-series": { @@ -13652,9 +15013,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "node_modules/picomatch": { @@ -13708,20 +15069,6 @@ "semver-compare": "^1.0.0" } }, - "node_modules/plist": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz", - "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==", - "dev": true, - "dependencies": { - "@xmldom/xmldom": "^0.8.8", - "base64-js": "^1.5.1", - "xmlbuilder": "^15.1.1" - }, - "engines": { - "node": ">=10.4.0" - } - }, "node_modules/posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", @@ -13920,6 +15267,15 @@ "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "dev": true, + "dependencies": { + "inherits": "~2.0.3" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -13959,12 +15315,11 @@ } }, "node_modules/react": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", - "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "loose-envify": "^1.1.0" }, "engines": { "node": ">=0.10.0" @@ -13987,53 +15342,58 @@ "dev": true }, "node_modules/react-native": { - "version": "0.64.4", - "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.64.4.tgz", - "integrity": "sha512-nxYt/NrTmGyW6+tOd+Hqp4O8uJ2LLZkN7ispMPDprAq7bwvLkF/GXmDQCZHAEyqXuhIztTtMX41KqFQ6UMCUJQ==", - "deprecated": "Issues and pull requests filed against this version are not supported. See the React Native release support policy to learn more: https://github.com/reactwg/react-native-releases#releases-support-policy", - "dev": true, - "dependencies": { - "@jest/create-cache-key-function": "^26.5.0", - "@react-native-community/cli": "^5.0.1-alpha.1", - "@react-native-community/cli-platform-android": "^5.0.1-alpha.1", - "@react-native-community/cli-platform-ios": "^5.0.1-alpha.1", - "@react-native/assets": "1.0.0", - "@react-native/normalize-color": "1.0.0", - "@react-native/polyfills": "1.0.0", + "version": "0.73.11", + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.73.11.tgz", + "integrity": "sha512-yvQIX+ZXOHMFnhmwZ1fBpRI/53k+iLN8DxVf24Fx4ABU63RGAYfyCZC0/3W+5OUVx4KSIZUv4Tv+/NGIieBOwg==", + "dev": true, + "dependencies": { + "@jest/create-cache-key-function": "^29.6.3", + "@react-native-community/cli": "12.3.7", + "@react-native-community/cli-platform-android": "12.3.7", + "@react-native-community/cli-platform-ios": "12.3.7", + "@react-native/assets-registry": "0.73.1", + "@react-native/codegen": "0.73.3", + "@react-native/community-cli-plugin": "0.73.18", + "@react-native/gradle-plugin": "0.73.5", + "@react-native/js-polyfills": "0.73.1", + "@react-native/normalize-colors": "0.73.2", + "@react-native/virtualized-lists": "0.73.4", "abort-controller": "^3.0.0", "anser": "^1.4.9", - "base64-js": "^1.1.2", + "ansi-regex": "^5.0.0", + "base64-js": "^1.5.1", + "chalk": "^4.0.0", + "deprecated-react-native-prop-types": "^5.0.0", "event-target-shim": "^5.0.1", - "hermes-engine": "~0.7.0", + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "jsc-android": "^245459.0.0", - "metro-babel-register": "0.64.0", - "metro-react-native-babel-transformer": "0.64.0", - "metro-runtime": "0.64.0", - "metro-source-map": "0.64.0", + "jest-environment-node": "^29.6.3", + "jsc-android": "^250231.0.0", + "memoize-one": "^5.0.0", + "metro-runtime": "^0.80.3", + "metro-source-map": "^0.80.3", + "mkdirp": "^0.5.1", "nullthrows": "^1.1.1", "pretty-format": "^26.5.2", - "promise": "^8.0.3", - "prop-types": "^15.7.2", - "react-devtools-core": "^4.6.0", - "react-native-codegen": "^0.0.6", - "react-refresh": "^0.4.0", + "promise": "^8.3.0", + "react-devtools-core": "^4.27.7", + "react-refresh": "^0.14.0", + "react-shallow-renderer": "^16.15.0", "regenerator-runtime": "^0.13.2", - "scheduler": "^0.20.1", - "shelljs": "^0.8.4", - "stacktrace-parser": "^0.1.3", - "use-subscription": "^1.0.0", + "scheduler": "0.24.0-canary-efb381bbf-20230505", + "stacktrace-parser": "^0.1.10", "whatwg-fetch": "^3.0.0", - "ws": "^6.1.4" + "ws": "^6.2.2", + "yargs": "^17.6.2" }, "bin": { "react-native": "cli.js" }, "engines": { - "node": ">=12" + "node": ">=18" }, "peerDependencies": { - "react": "17.0.1" + "react": "18.2.0" } }, "node_modules/react-native-builder-bob": { @@ -14088,9 +15448,9 @@ } }, "node_modules/react-native-builder-bob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, "dependencies": { "balanced-match": "^1.0.0" @@ -14192,10 +15552,344 @@ "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=10" + } + }, + "node_modules/react-native-builder-bob/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/react-native-builder-bob/node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-native-builder-bob/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/react-native-builder-bob/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/react-native/node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/react-native/node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/react-native/node_modules/@types/yargs": { + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.34.tgz", + "integrity": "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/react-native/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-native/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/react-native/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/react-native/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/react-native/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-native/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-native/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-native/node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/react-native/node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/react-native/node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "dev": true + }, + "node_modules/react-native/node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true + }, + "node_modules/react-native/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/react-native-builder-bob/node_modules/wrap-ansi": { + "node_modules/react-native/node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", @@ -14212,7 +15906,16 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/react-native-builder-bob/node_modules/y18n": { + "node_modules/react-native/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "dev": true, + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/react-native/node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", @@ -14221,7 +15924,7 @@ "node": ">=10" } }, - "node_modules/react-native-builder-bob/node_modules/yargs": { + "node_modules/react-native/node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", @@ -14239,7 +15942,7 @@ "node": ">=12" } }, - "node_modules/react-native-builder-bob/node_modules/yargs-parser": { + "node_modules/react-native/node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", @@ -14248,39 +15951,26 @@ "node": ">=12" } }, - "node_modules/react-native-codegen": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/react-native-codegen/-/react-native-codegen-0.0.6.tgz", - "integrity": "sha512-cMvrUelD81wiPitEPiwE/TCNscIVauXxmt4NTGcy18HrUd0WRWXfYzAQGXm0eI87u3NMudNhqFj2NISJenxQHg==", + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", "dev": true, - "dependencies": { - "flow-parser": "^0.121.0", - "jscodeshift": "^0.11.0", - "nullthrows": "^1.1.1" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/react-native/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", - "dev": true - }, - "node_modules/react-native/node_modules/ws": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", - "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "node_modules/react-shallow-renderer": { + "version": "16.15.0", + "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", + "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", "dev": true, "dependencies": { - "async-limiter": "~1.0.0" - } - }, - "node_modules/react-refresh": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz", - "integrity": "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "object-assign": "^4.1.1", + "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0" } }, "node_modules/read-pkg": { @@ -14426,13 +16116,19 @@ "node": ">= 6" } }, + "node_modules/readline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==", + "dev": true + }, "node_modules/recast": { - "version": "0.20.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.20.5.tgz", - "integrity": "sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==", + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", + "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", "dev": true, "dependencies": { - "ast-types": "0.14.2", + "ast-types": "0.15.2", "esprima": "~4.0.0", "source-map": "~0.6.1", "tslib": "^2.0.1" @@ -14441,18 +16137,6 @@ "node": ">= 4" } }, - "node_modules/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", - "dev": true, - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", @@ -14505,12 +16189,6 @@ "node": ">=4" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true - }, "node_modules/regenerator-transform": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", @@ -14656,18 +16334,21 @@ "dev": true }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dev": true, "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -14713,37 +16394,16 @@ "dev": true }, "node_modules/restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "dependencies": { - "onetime": "^2.0.0", + "onetime": "^5.1.0", "signal-exit": "^3.0.2" }, "engines": { - "node": ">=4" - } - }, - "node_modules/restore-cursor/node_modules/mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/restore-cursor/node_modules/onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^1.0.0" - }, - "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/ret": { @@ -14832,10 +16492,24 @@ } }, "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/safe-regex": { "version": "1.1.0", @@ -14937,9 +16611,9 @@ } }, "node_modules/sane/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dev": true, "dependencies": { "nice-try": "^1.0.4", @@ -15163,12 +16837,6 @@ "which": "bin/which" } }, - "node_modules/sax": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", - "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", - "dev": true - }, "node_modules/saxes": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", @@ -15182,13 +16850,12 @@ } }, "node_modules/scheduler": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", - "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "version": "0.24.0-canary-efb381bbf-20230505", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", + "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==", "dev": true, "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "loose-envify": "^1.1.0" } }, "node_modules/semver": { @@ -15222,9 +16889,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dev": true, "dependencies": { "debug": "2.6.9", @@ -15309,20 +16976,29 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dev": true, "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -15437,32 +17113,15 @@ } }, "node_modules/shell-quote": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz", - "integrity": "sha512-V0iQEZ/uoem3NmD91rD8XiuozJnq9/ZJnbHVXHnWqP1ucAhS3yJ7sLIIzEi57wFFcK3oi3kFUC46uSyWr35mxg==", - "dev": true, - "dependencies": { - "array-filter": "~0.0.0", - "array-map": "~0.0.0", - "array-reduce": "~0.0.0", - "jsonify": "~0.0.0" - } - }, - "node_modules/shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", "dev": true, - "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" - }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/shellwords": { @@ -15508,17 +17167,6 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/simple-plist": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz", - "integrity": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==", - "dev": true, - "dependencies": { - "bplist-creator": "0.1.0", - "bplist-parser": "0.3.1", - "plist": "^3.0.5" - } - }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -15881,15 +17529,6 @@ "node": ">= 0.6" } }, - "node_modules/stream-buffers": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", - "integrity": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==", - "dev": true, - "engines": { - "node": ">= 0.10.0" - } - }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -15899,26 +17538,6 @@ "safe-buffer": "~5.2.0" } }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -16103,10 +17722,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/strnum": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz", + "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ] + }, "node_modules/sudo-prompt": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", "dev": true }, "node_modules/supports-color": { @@ -16280,24 +17912,35 @@ } }, "node_modules/temp": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz", - "integrity": "sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==", + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", "dev": true, - "engines": [ - "node >=0.8.0" - ], "dependencies": { - "os-tmpdir": "^1.0.0", - "rimraf": "~2.2.6" + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true, + "engines": { + "node": ">=8" } }, "node_modules/temp/node_modules/rimraf": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", - "integrity": "sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==", + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, "bin": { "rimraf": "bin.js" } @@ -16318,6 +17961,42 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/terser": { + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.15.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -16374,15 +18053,6 @@ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -16489,9 +18159,9 @@ } }, "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true }, "node_modules/tsutils": { @@ -16652,9 +18322,9 @@ } }, "node_modules/typedoc/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, "dependencies": { "balanced-match": "^1.0.0" @@ -16688,35 +18358,6 @@ "node": ">=4.2.0" } }, - "node_modules/uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "deprecated": "support for ECMAScript is superseded by `uglify-js` as of v3.13.0", - "dev": true, - "dependencies": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - }, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/uglify-es/node_modules/commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==", - "dev": true - }, - "node_modules/ultron": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", - "integrity": "sha512-QMpnpVtYaWEeY+MwKDN/UdKlE/LsFZXM5lO1u7GaZzNgmIbGixHEmVMIKT+vqYOALu3m5GYQy9kz4Xu4IVn7Ow==", - "dev": true - }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", @@ -16884,9 +18525,9 @@ "dev": true }, "node_modules/update-browserslist-db": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", - "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", "dev": true, "funding": [ { @@ -16903,8 +18544,8 @@ } ], "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -16948,18 +18589,6 @@ "node": ">=0.10.0" } }, - "node_modules/use-subscription": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.8.2.tgz", - "integrity": "sha512-yC2ShScvQ1lAGRp5Y6pz1MqBIU81REfJ/sQIe16BCgKK9mRlZCnU90uY0alKsN6e/Next0vXTsvH3HbAfdH68w==", - "dev": true, - "dependencies": { - "use-sync-external-store": "^1.2.2" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, "node_modules/use-sync-external-store": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", @@ -17347,59 +18976,18 @@ } } }, - "node_modules/xcode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/xcode/-/xcode-2.1.0.tgz", - "integrity": "sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ==", - "dev": true, - "dependencies": { - "simple-plist": "^1.0.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/xcode/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "dev": true, - "bin": { - "uuid": "bin/uuid" - } - }, "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, - "node_modules/xmlbuilder": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", - "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", - "dev": true, - "engines": { - "node": ">=8.0" - } - }, "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, - "node_modules/xmldoc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.3.0.tgz", - "integrity": "sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==", - "dev": true, - "dependencies": { - "sax": "^1.2.4" - } - }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", diff --git a/packages/react-native-hms/package.json b/packages/react-native-hms/package.json index 983e368f7..6ae9ed565 100644 --- a/packages/react-native-hms/package.json +++ b/packages/react-native-hms/package.json @@ -1,6 +1,6 @@ { "name": "@100mslive/react-native-hms", - "version": "1.11.0", + "version": "1.12.0", "description": "Integrate Real Time Audio and Video conferencing, Interactive Live Streaming, and Chat in your apps with 100ms React Native SDK. With support for HLS and RTMP Live Streaming and Recording, Picture-in-Picture (PiP), one-to-one Video Call Modes, Audio Rooms, Video Player and much more, add immersive real-time communications to your apps.", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -134,15 +134,15 @@ "husky": "^4.2.5", "jest": "^26.0.1", "prettier": "^2.0.5", - "react": "17.0.1", - "react-native": "0.64.4", + "react": "18.2.0", + "react-native": "0.73.11", "react-native-builder-bob": "^0.18.0", "typedoc": "^0.24.7", "typescript": "^4.6.3" }, "peerDependencies": { "react": "*", - "react-native": "*" + "react-native": ">=0.77.3" }, "jest": { "preset": "react-native", diff --git a/packages/react-native-hms/react-native-hms.podspec b/packages/react-native-hms/react-native-hms.podspec index 3eec30800..6209ce5a5 100644 --- a/packages/react-native-hms/react-native-hms.podspec +++ b/packages/react-native-hms/react-native-hms.podspec @@ -7,16 +7,26 @@ Pod::Spec.new do |s| s.name = "react-native-hms" s.version = package["version"] s.summary = package["description"] + s.description = package["description"] s.homepage = package["homepage"] s.license = package["license"] s.authors = package["author"] - s.platforms = { :ios => "12.0" } + s.platforms = { :ios => "16.0" } s.source = { :git => "https://github.com/100mslive/100ms-react-native.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,m,mm,swift}" + s.requires_arc = true + s.swift_version = "5.0" - s.dependency "React-Core" + # Use modern dependency installation if available, otherwise fallback to React-Core + if defined?(install_modules_dependencies()) != nil + install_modules_dependencies(s) + else + s.dependency "React-Core" + end + + # 100ms SDK dependencies s.dependency "HMSSDK", sdkVersions["ios"] s.dependency 'HMSBroadcastExtensionSDK', sdkVersions["iOSBroadcastExtension"] s.dependency 'HMSHLSPlayerSDK', sdkVersions["iOSHMSHLSPlayer"] diff --git a/packages/react-native-hms/sdk-versions.json b/packages/react-native-hms/sdk-versions.json index 0e6ef4b1c..6090823cd 100644 --- a/packages/react-native-hms/sdk-versions.json +++ b/packages/react-native-hms/sdk-versions.json @@ -1,7 +1,7 @@ { - "ios": "1.16.5", - "iOSBroadcastExtension": "0.0.9", + "ios": "1.17.0", + "iOSBroadcastExtension": "1.0.1", "iOSHMSHLSPlayer": "0.0.2", "iOSNoiseCancellationModels": "1.0.0", - "android": "2.9.69" + "android": "2.9.78" } diff --git a/packages/react-native-hms/src/classes/HMSNativeEventEmitter.ts b/packages/react-native-hms/src/classes/HMSNativeEventEmitter.ts index a21be9116..ce246dcc4 100644 --- a/packages/react-native-hms/src/classes/HMSNativeEventEmitter.ts +++ b/packages/react-native-hms/src/classes/HMSNativeEventEmitter.ts @@ -61,15 +61,9 @@ export class HMSNativeEventEmitter { return { remove: () => { - if ( - subscription && - Object.getOwnPropertyNames(subscription).includes('remove') && - typeof subscription.remove === 'function' - ) { + if (subscription) { subscription.remove(); subscription = null; - } else { - this._nativeEventEmitter.removeListener(eventType, listener); } // disable `eventType` on `HMSSDK`, if all listeners has been removed diff --git a/packages/react-native-hms/src/classes/HMSSessionStore.ts b/packages/react-native-hms/src/classes/HMSSessionStore.ts index 447b9f605..3d6c6058f 100644 --- a/packages/react-native-hms/src/classes/HMSSessionStore.ts +++ b/packages/react-native-hms/src/classes/HMSSessionStore.ts @@ -168,16 +168,8 @@ export class HMSSessionStore { if (this._addedKeyChangeListenerCount <= 0) { this._addedKeyChangeListenerCount = 0; - if ( - this._deviceEventEmitterSubscription && - typeof this._deviceEventEmitterSubscription.remove === 'function' - ) { + if (this._deviceEventEmitterSubscription) { this._deviceEventEmitterSubscription.remove(); - } else { - DeviceEventEmitter.removeListener( - HMSUpdateListenerActions.ON_SESSION_STORE_CHANGED, - this._deviceEventEmitterListener - ); } this._deviceEventEmitterSubscription = undefined; diff --git a/packages/react-native-room-kit/README.md b/packages/react-native-room-kit/README.md index efe074a0f..a185fa65f 100644 --- a/packages/react-native-room-kit/README.md +++ b/packages/react-native-room-kit/README.md @@ -37,27 +37,28 @@ To get a better understanding of how the example app is structured, what to do o ## ☝️ Minimum Configuration -- Support for React Native 0.64.4 or above -- Support for Java 8 or above +- Support for React Native 0.73.0 or above +- Support for Java 17 or above - Support for Android API level 24 or above -- Xcode 13 or above -- Support for iOS 12 or above +- Xcode 14 or above +- Support for iOS 16 or above +- Node.js 22 or above ## 🤝 Recommended Configuration -- React Native 0.69.0 or above -- Java 11 or above -- Android API level 33 or above -- Xcode 14 or above +- React Native 0.77.3 or above +- Java 17 or above +- Android API level 35 or above +- Xcode 15 or above - iOS 16 or above +- Node.js 22 or above ## 📱 Supported Devices -- The Android SDK supports Android API level 21 and higher. It is built for armeabi-v7a, arm64-v8a, x86, and x86_64 architectures. +- The Android SDK supports Android API level 24 (Android 7.0) and higher. It is built for arm64-v8a and x86_64 architectures (64-bit only). Devices running Android OS 11 or above is recommended. -- iPhone & iPads with iOS version 12 or above are supported. - Devices running iOS 16 or above is recommended. +- iPhone & iPads with iOS version 16 or above are supported. ## Installation @@ -140,7 +141,7 @@ Once you have the prerequisites, follow the steps below to create a React Native ​ ```bash section=CreateRnApp -npx react-native init PrebuiltSampleApp --version 0.68.5 --npm && cd ./PrebuiltSampleApp +npx react-native init PrebuiltSampleApp --version 0.77.3 --npm && cd ./PrebuiltSampleApp ``` 3. Once the app is created, open it in VS code. @@ -290,13 +291,13 @@ npm install @100mslive/react-native-hms #### For iOS -Change ios target platform version to '13.0' in the `ios/Podfile` file +Change ios target platform version to '16.0' in the `ios/Podfile` file ```json{4} require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' -platform :ios, '13.0' +platform :ios, '16.0' install! 'cocoapods', :deterministic_uuids => false ``` diff --git a/packages/react-native-room-kit/example/.java-version b/packages/react-native-room-kit/example/.java-version index 8808b7e39..da2a99909 100644 --- a/packages/react-native-room-kit/example/.java-version +++ b/packages/react-native-room-kit/example/.java-version @@ -1 +1 @@ -17.0.12 +17.0.17 diff --git a/packages/react-native-room-kit/example/ExampleAppChangelog.txt b/packages/react-native-room-kit/example/ExampleAppChangelog.txt index 0d908f54f..a036a76f4 100644 --- a/packages/react-native-room-kit/example/ExampleAppChangelog.txt +++ b/packages/react-native-room-kit/example/ExampleAppChangelog.txt @@ -1,18 +1,93 @@ -Board: https://app.devrev.ai/100ms/vistas/vista-254 +### Major Updates -- SugarFit: Add support for Android 14 on React Native Android SDK -https://app.devrev.ai/100ms/works/ISS-23560 +- Upgraded to React Native 0.77.3 (from 0.71.19) + Major version upgrade with improved performance and stability -- Remove Foreground Notification Service from Android app -https://app.devrev.ai/100ms/works/ISS-23562 +- Added Android 16KB Page Size Compliance + Full support for Android 15+ devices with 16KB page size requirement + Enabled android.experimental.ndk.16kPageSize.support flag + Upgraded to NDK r27 (27.1.12297006) -- Fix: Screen freezing due to entering PIP mode -https://app.devrev.ai/100ms/works/ISS-23563 +- Migrated QR Code Scanner to VisionCamera + Replaced react-native-camera with react-native-vision-camera 4.7.2 + Using ML Kit code scanner for better performance and maintainability -- Native Android crash fixes -https://app.devrev.ai/100ms/works/ISS-23550 +- Removed Flipper Support + Removed deprecated Flipper debugging tool from Android and iOS + Reduces app size and eliminates Flipper-related build issues -Room Kit: 1.2.3 -React Native SDK: 1.11.0 -Android SDK: 2.9.69 -iOS SDK: 1.16.5 +### Android Improvements + +- Modernized Build System + Android Gradle Plugin: 8.7.2 (managed by RN) + Gradle: 8.11.1 + Kotlin: 2.0.21 + Java: 17 + Build Tools: 35.0.0 + Compile SDK: 35 + Target SDK: 35 + +- 64-bit Only Architecture + Removed 32-bit support (armeabi-v7a, x86) + Now supports only arm64-v8a and x86_64 + Required for 16KB page size compliance + +- Build Performance Optimizations + Enabled Gradle parallel builds and caching + Increased JVM memory: 4GB heap, 1GB metaspace + Added ProGuard rules for MediaPipe and Protobuf + +- Updated Minimum SDK + Min SDK: 24 (Android 7.0) - dropped Android 5.0/6.0 support + +### iOS Improvements + +- Updated Minimum iOS Version + Minimum iOS: 16.0 (from 13.0) + +- Fixed Monorepo Autolinking + Added manual pod linking for all dependencies + Updated Podfile for React Native 0.77.3 compatibility + +- Disabled New Architecture + Explicitly disabled Fabric (not yet supported by 100ms SDKs) + +### Dependency Updates + +Major package updates: +- react: 18.2.0 → 18.3.1 +- react-native-reanimated: 3.4.2 → 3.16.7 +- react-native-screens: 3.25.0 → 4.18.0 +- react-native-gesture-handler: 2.15.0 → 2.22.0 +- react-native-safe-area-context: 3.3.0 → 5.6.1 +- react-native-permissions: 3.4.0 → 4.1.5 +- lottie-react-native: 6.7.2 → 7.3.4 +- react-native-device-info: 11.1.0 → 14.0.0 +- @shopify/flash-list: 1.4.3 → 1.7.1 +- Added zustand: 5.0.8 for state management +- Added patch-package: 8.0.1 for dependency management + +### Breaking Changes + +- Minimum Android version now requires Android 7.0 (API 24) instead of Android 5.0 (API 21) +- 32-bit Android devices no longer supported (only 64-bit: arm64-v8a, x86_64) +- Minimum iOS version now requires iOS 16.0 instead of iOS 13.0 +- react-native-camera removed - QR scanning now uses VisionCamera API + +### Technical Details + +- Changed package namespace: com.rnexample → live.hms.rn +- Migrated MainApplication from Java to Kotlin +- Applied 5 critical dependency patches for RN 0.77.3 compatibility +- Improved Android packaging with proper JNI library conflict resolution +- Added comprehensive 16KB page size compliance documentation + +--- + +Current Version Info: +Room Kit: 1.3.0 +Example App Version: 2.5.4 (547) +React Native: 0.77.3 +React Native SDK: 1.12.0 +Android SDK: 2.9.78 +iOS SDK: 1.17.0 \ No newline at end of file diff --git a/packages/react-native-room-kit/example/android/Gemfile.lock b/packages/react-native-room-kit/example/android/Gemfile.lock index 0b8552ae0..58f21d1f8 100644 --- a/packages/react-native-room-kit/example/android/Gemfile.lock +++ b/packages/react-native-room-kit/example/android/Gemfile.lock @@ -9,31 +9,35 @@ GEM public_suffix (>= 2.0.2, < 7.0) artifactory (3.0.17) atomos (0.1.3) - aws-eventstream (1.3.0) - aws-partitions (1.994.0) - aws-sdk-core (3.211.0) + aws-eventstream (1.4.0) + aws-partitions (1.1177.0) + aws-sdk-core (3.235.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) + base64 + bigdecimal jmespath (~> 1, >= 1.6.1) - aws-sdk-kms (1.95.0) - aws-sdk-core (~> 3, >= 3.210.0) + logger + aws-sdk-kms (1.115.0) + aws-sdk-core (~> 3, >= 3.234.0) aws-sigv4 (~> 1.5) - aws-sdk-s3 (1.169.0) - aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-s3 (1.201.0) + aws-sdk-core (~> 3, >= 3.234.0) aws-sdk-kms (~> 1) aws-sigv4 (~> 1.5) - aws-sigv4 (1.10.1) + aws-sigv4 (1.12.1) aws-eventstream (~> 1, >= 1.0.2) babosa (1.0.4) - base64 (0.2.0) + base64 (0.3.0) + bigdecimal (3.3.1) claide (1.1.0) colored (1.2) colored2 (3.1.2) commander (4.6.0) highline (~> 2.0.0) declarative (0.0.20) - digest-crc (0.6.5) + digest-crc (0.7.0) rake (>= 12.0.0, < 14.0.0) domain_name (0.6.20240107) dotenv (2.8.1) @@ -55,11 +59,11 @@ GEM faraday (>= 0.8.0) http-cookie (~> 1.0.0) faraday-em_http (1.0.0) - faraday-em_synchrony (1.0.0) + faraday-em_synchrony (1.0.1) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.1) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) @@ -67,8 +71,8 @@ GEM faraday-retry (1.0.3) faraday_middleware (1.2.1) faraday (~> 1.0) - fastimage (2.3.1) - fastlane (2.225.0) + fastimage (2.4.0) + fastlane (2.228.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -108,9 +112,9 @@ GEM tty-spinner (>= 0.8.0, < 1.0.0) word_wrap (~> 1.0.0) xcodeproj (>= 1.13.0, < 2.0.0) - xcpretty (~> 0.3.0) + xcpretty (~> 0.4.1) xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) - fastlane-plugin-firebase_app_distribution (0.9.1) + fastlane-plugin-firebase_app_distribution (0.10.1) google-apis-firebaseappdistribution_v1 (~> 0.3.0) google-apis-firebaseappdistribution_v1alpha (~> 0.2.0) fastlane-sirp (1.0.0) @@ -136,12 +140,12 @@ GEM google-apis-core (>= 0.11.0, < 2.a) google-apis-storage_v1 (0.31.0) google-apis-core (>= 0.11.0, < 2.a) - google-cloud-core (1.7.1) + google-cloud-core (1.8.0) google-cloud-env (>= 1.0, < 3.a) google-cloud-errors (~> 1.0) google-cloud-env (1.6.0) faraday (>= 0.17.3, < 3.0) - google-cloud-errors (1.4.0) + google-cloud-errors (1.5.0) google-cloud-storage (1.47.0) addressable (~> 2.8) digest-crc (~> 0.4) @@ -157,39 +161,42 @@ GEM os (>= 0.9, < 2.0) signet (>= 0.16, < 2.a) highline (2.0.3) - http-cookie (1.0.7) + http-cookie (1.0.8) domain_name (~> 0.5) - httpclient (2.8.3) + httpclient (2.9.0) + mutex_m jmespath (1.6.2) - json (2.7.3) - jwt (2.9.3) + json (2.15.1) + jwt (2.10.2) base64 + logger (1.7.0) mini_magick (4.13.2) mini_mime (1.1.5) - multi_json (1.15.0) + multi_json (1.17.0) multipart-post (2.4.1) - nanaimo (0.3.0) - naturally (2.2.1) + mutex_m (0.3.0) + nanaimo (0.4.0) + naturally (2.3.0) nkf (0.2.0) - optparse (0.5.0) + optparse (0.6.0) os (1.1.4) - plist (3.7.1) - public_suffix (6.0.1) - rake (13.2.1) + plist (3.7.2) + public_suffix (6.0.2) + rake (13.3.0) representable (3.2.0) declarative (< 0.1.0) trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.3.9) - rouge (2.0.7) + rexml (3.4.4) + rouge (3.28.0) ruby2_keywords (0.0.5) - rubyzip (2.3.2) + rubyzip (2.4.1) security (0.1.5) - signet (0.19.0) + signet (0.21.0) addressable (~> 2.8) faraday (>= 0.17.5, < 3.a) - jwt (>= 1.5, < 3.0) + jwt (>= 1.5, < 4.0) multi_json (~> 1.10) simctl (1.6.10) CFPropertyList @@ -206,25 +213,26 @@ GEM uber (0.1.0) unicode-display_width (2.6.0) word_wrap (1.0.0) - xcodeproj (1.25.1) + xcodeproj (1.27.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) colored2 (~> 3.1) - nanaimo (~> 0.3.0) + nanaimo (~> 0.4.0) rexml (>= 3.3.6, < 4.0) - xcpretty (0.3.0) - rouge (~> 2.0.7) + xcpretty (0.4.1) + rouge (~> 3.28.0) xcpretty-travis-formatter (1.0.1) xcpretty (~> 0.2, >= 0.0.7) PLATFORMS arm64-darwin-22 arm64-darwin-23 + arm64-darwin-24 DEPENDENCIES fastlane fastlane-plugin-firebase_app_distribution BUNDLED WITH - 2.5.17 + 2.5.22 diff --git a/packages/react-native-room-kit/example/android/app/build.gradle b/packages/react-native-room-kit/example/android/app/build.gradle index 79f2da7b3..fce69c0d5 100644 --- a/packages/react-native-room-kit/example/android/app/build.gradle +++ b/packages/react-native-room-kit/example/android/app/build.gradle @@ -1,5 +1,6 @@ apply plugin: "com.android.application" apply plugin: "com.facebook.react" +apply plugin: "kotlin-android" import com.android.build.OutputFile @@ -26,7 +27,6 @@ react { /* Bundling */ // A list containing the node command and its flags. Default is just 'node'. - nodeExecutableAndArgs = ["/usr/local/bin/node", "--openssl-legacy-provider"] // // The command to run when bundling. By default is 'bundle' // bundleCommand = "ram-bundle" @@ -90,6 +90,7 @@ def reactNativeArchitectures() { android { ndkVersion rootProject.ext.ndkVersion + buildToolsVersion rootProject.ext.buildToolsVersion compileSdkVersion rootProject.ext.compileSdkVersion @@ -98,9 +99,10 @@ android { applicationId "live.hms.rn" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 541 - versionName "2.4.91" + versionCode 547 + versionName "2.5.4" missingDimensionStrategy 'react-native-camera', 'general' + multiDexEnabled true } splits { @@ -144,8 +146,30 @@ android { } } packagingOptions { - pickFirst '**/*.so' + jniLibs { + // Be selective about which duplicate .so files to pick first + // Don't use pickFirsts for libc++_shared.so as it can cause symbol resolution issues + pickFirsts += [ + '**/libfbjni.so', + '**/libjsi.so', + '**/libreactnativejni.so', + '**/libfolly_*.so', + '**/libglog.so' + ] + // Explicitly set 16KB alignment for all native libraries + useLegacyPackaging = false + } + // Handle duplicate GestureHandlerStateManager from reanimated and gesture-handler + resources { + pickFirsts += ['**/GestureHandlerStateManager.class'] + } + } + + // Enable BuildConfig for 16KB page size compliance + buildFeatures { + buildConfig = true } + // applicationVariants are e.g. debug, release applicationVariants.all { variant -> variant.outputs.each { output -> @@ -168,22 +192,7 @@ dependencies { implementation("com.facebook.react:react-android") implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0") - - debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") - debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { - exclude group:'com.squareup.okhttp3', module:'okhttp' - } - - debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") - - constraints { - implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0") { - because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib") - } - implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") { - because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib") - } - } + implementation("androidx.multidex:multidex:2.0.1") if (hermesEnabled.toBoolean()) { implementation("com.facebook.react:hermes-android") @@ -191,9 +200,25 @@ dependencies { implementation jscFlavor } + // All native modules (manually added - RN 0.77.3 autolinking broken in monorepo) + implementation project(':_100mslive_react_native_video_plugin') + implementation project(':rnasyncstorage') + implementation project(':rnblurview') + implementation project(':_react_native_masked_view_masked_view') + implementation project(':rnflashlist') + implementation project(':lottiereactnative') + implementation project(':react_native_device_info') + implementation project(':rngesturehandler_codegen') + implementation project(':RNImagePickerSpec') + implementation project(':react_native_linear_gradient') + implementation project(':react_native_lottie_splash_screen') + implementation project(':RNPermissionsSpec') + implementation project(':react-native-reanimated') + implementation project(':safeareacontext') + implementation project(':rnscreens') + implementation project(':react_native_vision_camera') + implementation project(':RNCWebViewSpec') + + // Local 100ms packages implementation project(':100mslive_react-native-hms') - - implementation project(':react-native-lottie-splash-screen') } - -apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) diff --git a/packages/react-native-room-kit/example/android/app/proguard-rules.pro b/packages/react-native-room-kit/example/android/app/proguard-rules.pro index f3ed3ef63..b3fcf5410 100644 --- a/packages/react-native-room-kit/example/android/app/proguard-rules.pro +++ b/packages/react-native-room-kit/example/android/app/proguard-rules.pro @@ -11,4 +11,12 @@ -keep class com.facebook.hermes.unicode.** { *; } -keep class com.facebook.jni.** { *; } -keep class com.swmansion.reanimated.** { *; } --keep class com.facebook.react.turbomodule.** { *; } \ No newline at end of file +-keep class com.facebook.react.turbomodule.** { *; } + +# MediaPipe classes +-keep class com.google.mediapipe.** { *; } +-dontwarn com.google.mediapipe.** + +# Protobuf classes +-keep class com.google.protobuf.** { *; } +-dontwarn com.google.protobuf.** \ No newline at end of file diff --git a/packages/react-native-room-kit/example/android/app/src/debug/java/com/rnexample/ReactNativeFlipper.java b/packages/react-native-room-kit/example/android/app/src/debug/java/com/rnexample/ReactNativeFlipper.java deleted file mode 100644 index c85879ee9..000000000 --- a/packages/react-native-room-kit/example/android/app/src/debug/java/com/rnexample/ReactNativeFlipper.java +++ /dev/null @@ -1,75 +0,0 @@ -/** - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - *

This source code is licensed under the MIT license found in the LICENSE file in the root - * directory of this source tree. - */ -package live.hms.rn; - -import android.content.Context; -import com.facebook.flipper.android.AndroidFlipperClient; -import com.facebook.flipper.android.utils.FlipperUtils; -import com.facebook.flipper.core.FlipperClient; -import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; -import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; -import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; -import com.facebook.flipper.plugins.inspector.DescriptorMapping; -import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; -import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; -import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; -import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; -import com.facebook.react.ReactInstanceEventListener; -import com.facebook.react.ReactInstanceManager; -import com.facebook.react.bridge.ReactContext; -import com.facebook.react.modules.network.NetworkingModule; -import okhttp3.OkHttpClient; - -/** - * Class responsible of loading Flipper inside your React Native application. This is the debug - * flavor of it. Here you can add your own plugins and customize the Flipper setup. - */ -public class ReactNativeFlipper { - public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { - if (FlipperUtils.shouldEnableFlipper(context)) { - final FlipperClient client = AndroidFlipperClient.getInstance(context); - - client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); - client.addPlugin(new DatabasesFlipperPlugin(context)); - client.addPlugin(new SharedPreferencesFlipperPlugin(context)); - client.addPlugin(CrashReporterPlugin.getInstance()); - - NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); - NetworkingModule.setCustomClientBuilder( - new NetworkingModule.CustomClientBuilder() { - @Override - public void apply(OkHttpClient.Builder builder) { - builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); - } - }); - client.addPlugin(networkFlipperPlugin); - client.start(); - - // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized - // Hence we run if after all native modules have been initialized - ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); - if (reactContext == null) { - reactInstanceManager.addReactInstanceEventListener( - new ReactInstanceEventListener() { - @Override - public void onReactContextInitialized(ReactContext reactContext) { - reactInstanceManager.removeReactInstanceEventListener(this); - reactContext.runOnNativeModulesQueueThread( - new Runnable() { - @Override - public void run() { - client.addPlugin(new FrescoFlipperPlugin()); - } - }); - } - }); - } else { - client.addPlugin(new FrescoFlipperPlugin()); - } - } - } -} diff --git a/packages/react-native-room-kit/example/android/app/src/main/AndroidManifest.xml b/packages/react-native-room-kit/example/android/app/src/main/AndroidManifest.xml index a57c5c60f..a0fb992d3 100644 --- a/packages/react-native-room-kit/example/android/app/src/main/AndroidManifest.xml +++ b/packages/react-native-room-kit/example/android/app/src/main/AndroidManifest.xml @@ -38,7 +38,8 @@ android:theme="@style/AppTheme" android:allowTaskReparenting="false" android:taskAffinity="" - android:exported="true"> + android:exported="true" + android:allowNativeHeapPointerTagging="true"> getPackages() { - List packages = new PackageList(this).getPackages(); - packages.add(new HmssdkPackage()); - return packages; - } - - @Override - protected String getJSMainModuleName() { - return "index"; - } - - @Override - protected boolean isNewArchEnabled() { - return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; - } - - @Override - protected Boolean isHermesEnabled() { - return BuildConfig.IS_HERMES_ENABLED; - } - }; - - @Override - public ReactNativeHost getReactNativeHost() { - return mReactNativeHost; - } - - @Override - public void onCreate() { - super.onCreate(); - SoLoader.init(this, /* native exopackage */ false); - if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { - // If you opted-in for the New Architecture, we load the native entry point for this app. - DefaultNewArchitectureEntryPoint.load(); - } - ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); - } -} diff --git a/packages/react-native-room-kit/example/android/app/src/main/java/com/rnexample/MainActivity.java b/packages/react-native-room-kit/example/android/app/src/main/java/live/hms/rn/MainActivity.java similarity index 98% rename from packages/react-native-room-kit/example/android/app/src/main/java/com/rnexample/MainActivity.java rename to packages/react-native-room-kit/example/android/app/src/main/java/live/hms/rn/MainActivity.java index 0cc583f8a..faaa1ece3 100644 --- a/packages/react-native-room-kit/example/android/app/src/main/java/com/rnexample/MainActivity.java +++ b/packages/react-native-room-kit/example/android/app/src/main/java/live/hms/rn/MainActivity.java @@ -62,7 +62,7 @@ protected void onResume() { } @Override - protected void onUserLeaveHint() { + public void onUserLeaveHint() { super.onUserLeaveHint(); HMSManager.Companion.onUserLeaveHint(); } diff --git a/packages/react-native-room-kit/example/android/app/src/main/java/live/hms/rn/MainApplication.kt b/packages/react-native-room-kit/example/android/app/src/main/java/live/hms/rn/MainApplication.kt new file mode 100644 index 000000000..c641b0440 --- /dev/null +++ b/packages/react-native-room-kit/example/android/app/src/main/java/live/hms/rn/MainApplication.kt @@ -0,0 +1,41 @@ +package live.hms.rn + +import androidx.multidex.MultiDexApplication +import com.facebook.react.PackageList +import com.facebook.react.ReactApplication +import com.facebook.react.ReactNativeHost +import com.facebook.react.ReactPackage +import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load +import com.facebook.react.defaults.DefaultReactNativeHost +import com.facebook.react.soloader.OpenSourceMergedSoMapping +import com.facebook.soloader.SoLoader +import com.reactnativehmssdk.HmssdkPackage + +class MainApplication : + MultiDexApplication(), + ReactApplication { + override val reactNativeHost: ReactNativeHost = + object : DefaultReactNativeHost(this) { + override fun getPackages(): List { + val packages = PackageList(this).packages.toMutableList() + packages.add(HmssdkPackage()) + return packages + } + + override fun getJSMainModuleName(): String = "index" + + override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG + + override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED + override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED + } + + override fun onCreate() { + super.onCreate() + SoLoader.init(this, OpenSourceMergedSoMapping) + if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { + // If you opted-in for the New Architecture, we load the native entry point for this app. + load() + } + } +} diff --git a/packages/react-native-room-kit/example/android/app/src/release/java/com/rnexample/ReactNativeFlipper.java b/packages/react-native-room-kit/example/android/app/src/release/java/com/rnexample/ReactNativeFlipper.java deleted file mode 100644 index f8fae3659..000000000 --- a/packages/react-native-room-kit/example/android/app/src/release/java/com/rnexample/ReactNativeFlipper.java +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - *

This source code is licensed under the MIT license found in the LICENSE file in the root - * directory of this source tree. - */ -package live.hms.rn; - -import android.content.Context; -import com.facebook.react.ReactInstanceManager; - -/** - * Class responsible of loading Flipper inside your React Native application. This is the release - * flavor of it so it's empty as we don't want to load Flipper. - */ -public class ReactNativeFlipper { - public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { - // Do nothing as we don't want to initialize Flipper on Release. - } -} diff --git a/packages/react-native-room-kit/example/android/build.gradle b/packages/react-native-room-kit/example/android/build.gradle index 3c1e6ede1..6ace9b84f 100644 --- a/packages/react-native-room-kit/example/android/build.gradle +++ b/packages/react-native-room-kit/example/android/build.gradle @@ -2,22 +2,48 @@ buildscript { ext { - buildToolsVersion = "34.0.0" - minSdkVersion = 21 - compileSdkVersion = 34 - targetSdkVersion = 34 + buildToolsVersion = "35.0.0" + minSdkVersion = 24 + compileSdkVersion = 35 + targetSdkVersion = 35 - // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP. - ndkVersion = "23.1.7779620" + // NDK r27 for compatibility (r28 has libc++ ABI issues with VisionCamera) + ndkVersion = "27.1.12297006" + + // Kotlin 2.0.21 for RN 0.77.3 compatibility + kotlinVersion = "2.0.21" } repositories { google() mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:7.4.2") + // AGP version managed by React Native Gradle Plugin + classpath("com.android.tools.build:gradle") classpath("com.facebook.react:react-native-gradle-plugin") - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") + } +} + +// Global configuration for all subprojects to enforce Java 17 and Kotlin 2.0 +subprojects { + afterEvaluate { project -> + if (project.plugins.hasPlugin('com.android.library') || + project.plugins.hasPlugin('com.android.application')) { + project.android { + compileOptions { + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 + } + } + } + + if (project.plugins.hasPlugin('org.jetbrains.kotlin.android')) { + project.tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach { + kotlinOptions { + jvmTarget = "17" + } + } + } } } diff --git a/packages/react-native-room-kit/example/android/gradle.properties b/packages/react-native-room-kit/example/android/gradle.properties index b2b1ee620..620a7bcb5 100644 --- a/packages/react-native-room-kit/example/android/gradle.properties +++ b/packages/react-native-room-kit/example/android/gradle.properties @@ -9,14 +9,13 @@ # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. -# Default value: -Xmx1024m -XX:MaxPermSize=256m -# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -org.gradle.jvmargs=-Xmx4096M -XX:MaxMetaspaceSize=512m +# Increased for Kotlin 2.0.21 compilation and React Native 0.77.3 +org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=1024m -Dfile.encoding=UTF-8 -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true +# Performance optimizations for React Native 0.77.3 builds +org.gradle.parallel=true +org.gradle.configureondemand=true +org.gradle.caching=true # AndroidX package structure to make it clearer which packages are bundled with the # Android operating system, and which are packaged with your app's APK @@ -25,13 +24,10 @@ android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true -# Version of flipper SDK to use with React Native -FLIPPER_VERSION=0.150.0 - # Use this property to specify which architecture you want to build. # You can also override it from the CLI using # ./gradlew -PreactNativeArchitectures=x86_64 -reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 +reactNativeArchitectures=arm64-v8a,x86_64 # Use this property to enable support to the new architecture. # This will allow you to use TurboModules and the Fabric render in @@ -43,3 +39,18 @@ newArchEnabled=false # Use this property to enable or disable the Hermes JS engine. # If set to false, you will be using JSC instead. hermesEnabled=true + +# Kotlin configuration for version 2.0.21 +kotlin.stdlib.default.dependency=true + +# Disable React Native's automatic JVM toolchain configuration to prevent conflicts +react.internal.disableJavaVersionAlignment=true + +# Suppress AGP 8.5.0 warning about compileSdk 35 +android.suppressUnsupportedCompileSdk=35 + +# Enable 16KB page size support for Android 15+ devices +android.experimental.ndk.16kPageSize.support=true + +# Enable VisionCamera code scanner (QR/barcode scanning) using ML Kit +VisionCamera_enableCodeScanner=true diff --git a/packages/react-native-room-kit/example/android/gradle/wrapper/gradle-wrapper.properties b/packages/react-native-room-kit/example/android/gradle/wrapper/gradle-wrapper.properties index 8fad3f5a9..c1d5e0185 100644 --- a/packages/react-native-room-kit/example/android/gradle/wrapper/gradle-wrapper.properties +++ b/packages/react-native-room-kit/example/android/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/packages/react-native-room-kit/example/android/settings.gradle b/packages/react-native-room-kit/example/android/settings.gradle index bba990c26..259da5348 100644 --- a/packages/react-native-room-kit/example/android/settings.gradle +++ b/packages/react-native-room-kit/example/android/settings.gradle @@ -1,10 +1,56 @@ +pluginManagement { + includeBuild("../node_modules/@react-native/gradle-plugin") +} + +plugins { + id("com.facebook.react.settings") +} + +// Autolinking disabled - broken in RN 0.77.3 monorepo setup +// extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> +// ex.autolinkLibrariesFromCommand() +// } + rootProject.name = 'RNExample' -apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' -includeBuild('../node_modules/react-native-gradle-plugin') +includeBuild('../node_modules/@react-native/gradle-plugin') +// Manual includes for all native modules (RN 0.77.3 autolinking broken in monorepo) +include ':_100mslive_react_native_video_plugin' +project(':_100mslive_react_native_video_plugin').projectDir = new File(rootProject.projectDir, '../node_modules/@100mslive/react-native-video-plugin/android') +include ':rnasyncstorage' +project(':rnasyncstorage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-async-storage/async-storage/android') +include ':rnblurview' +project(':rnblurview').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/blur/android') +include ':_react_native_masked_view_masked_view' +project(':_react_native_masked_view_masked_view').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-masked-view/masked-view/android') +include ':rnflashlist' +project(':rnflashlist').projectDir = new File(rootProject.projectDir, '../node_modules/@shopify/flash-list/android') +include ':lottiereactnative' +project(':lottiereactnative').projectDir = new File(rootProject.projectDir, '../node_modules/lottie-react-native/android') +include ':react_native_device_info' +project(':react_native_device_info').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-device-info/android') +include ':rngesturehandler_codegen' +project(':rngesturehandler_codegen').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') +include ':RNImagePickerSpec' +project(':RNImagePickerSpec').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android') +include ':react_native_linear_gradient' +project(':react_native_linear_gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android') +include ':react_native_lottie_splash_screen' +project(':react_native_lottie_splash_screen').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-lottie-splash-screen/android') +include ':RNPermissionsSpec' +project(':RNPermissionsSpec').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-permissions/android') +include ':react-native-reanimated' +project(':react-native-reanimated').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-reanimated/android') +include ':safeareacontext' +project(':safeareacontext').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-safe-area-context/android') +include ':rnscreens' +project(':rnscreens').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-screens/android') +include ':react_native_vision_camera' +project(':react_native_vision_camera').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vision-camera/android') +include ':RNCWebViewSpec' +project(':RNCWebViewSpec').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview/android') + +// Local 100ms packages include ':100mslive_react-native-hms' project(':100mslive_react-native-hms').projectDir = new File(rootProject.projectDir, '../../../react-native-hms/android') - -include ':react-native-lottie-splash-screen' -project(':react-native-lottie-splash-screen').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-lottie-splash-screen/android') diff --git a/packages/react-native-room-kit/example/babel.config.js b/packages/react-native-room-kit/example/babel.config.js index 51989359b..84ba4cdaa 100644 --- a/packages/react-native-room-kit/example/babel.config.js +++ b/packages/react-native-room-kit/example/babel.config.js @@ -6,6 +6,8 @@ const rnhmsLibPackageJson = require('../../react-native-hms/package.json'); module.exports = { presets: ['module:metro-react-native-babel-preset'], plugins: [ + 'babel-plugin-syntax-hermes-parser', + ['@babel/plugin-transform-private-methods', { loose: true }], [ 'module-resolver', { @@ -14,12 +16,12 @@ module.exports = { [rnrkLibPackageJson.name]: path.join( __dirname, '..', - rnrkLibPackageJson.source, + rnrkLibPackageJson.source ), [rnhmsLibPackageJson.name]: path.join( __dirname, '../../react-native-hms', - rnhmsLibPackageJson.source, + rnhmsLibPackageJson.source ), }, }, diff --git a/packages/react-native-room-kit/example/ios/Gemfile b/packages/react-native-room-kit/example/ios/Gemfile index 3723b8b74..cdd3a6b34 100644 --- a/packages/react-native-room-kit/example/ios/Gemfile +++ b/packages/react-native-room-kit/example/ios/Gemfile @@ -1,6 +1,6 @@ source "https://rubygems.org" -gem "fastlane", "~> 2.220.0" +gem "fastlane" plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') eval_gemfile(plugins_path) if File.exist?(plugins_path) diff --git a/packages/react-native-room-kit/example/ios/Gemfile.lock b/packages/react-native-room-kit/example/ios/Gemfile.lock index b15b13769..8bb678279 100644 --- a/packages/react-native-room-kit/example/ios/Gemfile.lock +++ b/packages/react-native-room-kit/example/ios/Gemfile.lock @@ -9,31 +9,35 @@ GEM public_suffix (>= 2.0.2, < 7.0) artifactory (3.0.17) atomos (0.1.3) - aws-eventstream (1.3.0) - aws-partitions (1.994.0) - aws-sdk-core (3.211.0) + aws-eventstream (1.4.0) + aws-partitions (1.1177.0) + aws-sdk-core (3.235.0) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) + base64 + bigdecimal jmespath (~> 1, >= 1.6.1) - aws-sdk-kms (1.95.0) - aws-sdk-core (~> 3, >= 3.210.0) + logger + aws-sdk-kms (1.115.0) + aws-sdk-core (~> 3, >= 3.234.0) aws-sigv4 (~> 1.5) - aws-sdk-s3 (1.169.0) - aws-sdk-core (~> 3, >= 3.210.0) + aws-sdk-s3 (1.201.0) + aws-sdk-core (~> 3, >= 3.234.0) aws-sdk-kms (~> 1) aws-sigv4 (~> 1.5) - aws-sigv4 (1.10.1) + aws-sigv4 (1.12.1) aws-eventstream (~> 1, >= 1.0.2) babosa (1.0.4) - base64 (0.2.0) + base64 (0.3.0) + bigdecimal (3.3.1) claide (1.1.0) colored (1.2) colored2 (3.1.2) commander (4.6.0) highline (~> 2.0.0) declarative (0.0.20) - digest-crc (0.6.5) + digest-crc (0.7.0) rake (>= 12.0.0, < 14.0.0) domain_name (0.6.20240107) dotenv (2.8.1) @@ -55,11 +59,11 @@ GEM faraday (>= 0.8.0) http-cookie (~> 1.0.0) faraday-em_http (1.0.0) - faraday-em_synchrony (1.0.0) + faraday-em_synchrony (1.0.1) faraday-excon (1.1.0) faraday-httpclient (1.0.1) - faraday-multipart (1.0.4) - multipart-post (~> 2) + faraday-multipart (1.1.1) + multipart-post (~> 2.0) faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) @@ -67,8 +71,8 @@ GEM faraday-retry (1.0.3) faraday_middleware (1.2.1) faraday (~> 1.0) - fastimage (2.3.1) - fastlane (2.220.0) + fastimage (2.4.0) + fastlane (2.228.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -84,6 +88,7 @@ GEM faraday-cookie_jar (~> 0.0.6) faraday_middleware (~> 1.0) fastimage (>= 2.1.0, < 3.0.0) + fastlane-sirp (>= 1.0.0) gh_inspector (>= 1.1.2, < 2.0.0) google-apis-androidpublisher_v3 (~> 0.3) google-apis-playcustomapp_v1 (~> 0.1) @@ -107,12 +112,14 @@ GEM tty-spinner (>= 0.8.0, < 1.0.0) word_wrap (~> 1.0.0) xcodeproj (>= 1.13.0, < 2.0.0) - xcpretty (~> 0.3.0) + xcpretty (~> 0.4.1) xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) - fastlane-plugin-firebase_app_distribution (0.9.1) + fastlane-plugin-firebase_app_distribution (0.10.1) google-apis-firebaseappdistribution_v1 (~> 0.3.0) google-apis-firebaseappdistribution_v1alpha (~> 0.2.0) - fastlane-plugin-versioning (0.6.0) + fastlane-plugin-versioning (0.7.1) + fastlane-sirp (1.0.0) + sysrandom (~> 1.0) gh_inspector (1.1.3) google-apis-androidpublisher_v3 (0.54.0) google-apis-core (>= 0.11.0, < 2.a) @@ -134,12 +141,12 @@ GEM google-apis-core (>= 0.11.0, < 2.a) google-apis-storage_v1 (0.31.0) google-apis-core (>= 0.11.0, < 2.a) - google-cloud-core (1.7.1) + google-cloud-core (1.8.0) google-cloud-env (>= 1.0, < 3.a) google-cloud-errors (~> 1.0) google-cloud-env (1.6.0) faraday (>= 0.17.3, < 3.0) - google-cloud-errors (1.4.0) + google-cloud-errors (1.5.0) google-cloud-storage (1.47.0) addressable (~> 2.8) digest-crc (~> 0.4) @@ -155,43 +162,47 @@ GEM os (>= 0.9, < 2.0) signet (>= 0.16, < 2.a) highline (2.0.3) - http-cookie (1.0.7) + http-cookie (1.0.8) domain_name (~> 0.5) - httpclient (2.8.3) + httpclient (2.9.0) + mutex_m jmespath (1.6.2) - json (2.7.3) - jwt (2.9.3) + json (2.15.2) + jwt (2.10.2) base64 + logger (1.7.0) mini_magick (4.13.2) mini_mime (1.1.5) - multi_json (1.15.0) + multi_json (1.17.0) multipart-post (2.4.1) - nanaimo (0.3.0) - naturally (2.2.1) + mutex_m (0.3.0) + nanaimo (0.4.0) + naturally (2.3.0) nkf (0.2.0) - optparse (0.5.0) + optparse (0.6.0) os (1.1.4) - plist (3.7.1) - public_suffix (6.0.1) - rake (13.2.1) + plist (3.7.2) + public_suffix (6.0.2) + rake (13.3.0) representable (3.2.0) declarative (< 0.1.0) trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.3.9) - rouge (2.0.7) + rexml (3.4.4) + rouge (3.28.0) ruby2_keywords (0.0.5) - rubyzip (2.3.2) + rubyzip (2.4.1) security (0.1.5) - signet (0.19.0) + signet (0.21.0) addressable (~> 2.8) faraday (>= 0.17.5, < 3.a) - jwt (>= 1.5, < 3.0) + jwt (>= 1.5, < 4.0) multi_json (~> 1.10) simctl (1.6.10) CFPropertyList naturally + sysrandom (1.0.5) terminal-notifier (2.0.0) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) @@ -203,26 +214,27 @@ GEM uber (0.1.0) unicode-display_width (2.6.0) word_wrap (1.0.0) - xcodeproj (1.25.1) + xcodeproj (1.27.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) colored2 (~> 3.1) - nanaimo (~> 0.3.0) + nanaimo (~> 0.4.0) rexml (>= 3.3.6, < 4.0) - xcpretty (0.3.0) - rouge (~> 2.0.7) + xcpretty (0.4.1) + rouge (~> 3.28.0) xcpretty-travis-formatter (1.0.1) xcpretty (~> 0.2, >= 0.0.7) PLATFORMS arm64-darwin-22 arm64-darwin-23 + arm64-darwin-24 DEPENDENCIES - fastlane (~> 2.220.0) + fastlane fastlane-plugin-firebase_app_distribution fastlane-plugin-versioning BUNDLED WITH - 2.5.17 + 2.5.22 diff --git a/packages/react-native-room-kit/example/ios/Podfile b/packages/react-native-room-kit/example/ios/Podfile index 00d837977..1a414a90c 100644 --- a/packages/react-native-room-kit/example/ios/Podfile +++ b/packages/react-native-room-kit/example/ios/Podfile @@ -1,20 +1,11 @@ require_relative '../node_modules/react-native/scripts/react_native_pods' -require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' +require_relative '../node_modules/react-native-permissions/scripts/setup' -# platform :ios, '13.0' -platform :ios, min_ios_version_supported +platform :ios, '16.0' prepare_react_native_project! -# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set. -# because `react-native-flipper` depends on (FlipperKit,...) that will be excluded -# -# To fix this you can also exclude `react-native-flipper` using a `react-native.config.js` -# ```js -# module.exports = { -# dependencies: { -# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}), -# ``` -flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled +# Explicitly disable New Architecture (react-native-hms and react-native-room-kit do not support it) +ENV['RCT_NEW_ARCH_ENABLED'] = '0' linkage = ENV['USE_FRAMEWORKS'] if linkage != nil @@ -30,32 +21,43 @@ target 'RNExampleBroadcastUpload' do end target 'RNExample' do - config = use_native_modules! - # Flags change depending on the env values. flags = get_default_flags() - permissions_path = '../node_modules/react-native-permissions/ios' + setup_permissions([ + 'Camera', + 'Microphone', + ]) use_react_native!( - :path => config[:reactNativePath], + :path => '../node_modules/react-native', # Hermes is now enabled by default. Disable by setting this flag to false. - # Upcoming versions of React Native may rely on get_default_flags(), but - # we make it explicit here to aid in the React Native upgrade process. :hermes_enabled => flags[:hermes_enabled], - :fabric_enabled => flags[:fabric_enabled], - # Enables Flipper. - # - # Note that if you have use_frameworks! enabled, Flipper will not work and - # you should disable the next line. - :flipper_configuration => flipper_config, + # New Architecture MUST be disabled (react-native-hms and react-native-room-kit do not support it) + :fabric_enabled => false, # An absolute path to your application root. :app_path => "#{Pod::Config.instance.installation_root}/.." ) + # Manually added pods for monorepo autolinking pod 'react-native-hms', :path => '../../../react-native-hms' - pod 'Permission-Camera', :path => "#{permissions_path}/Camera" - pod 'Permission-Microphone', :path => "#{permissions_path}/Microphone" + pod 'lottie-react-native', :path => '../node_modules/lottie-react-native' + pod 'react-native-lottie-splash-screen', :path => '../node_modules/react-native-lottie-splash-screen' + pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler' + pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-async-storage/async-storage' + pod 'react-native-blur', :path => '../node_modules/@react-native-community/blur' + pod 'RNCMaskedView', :path => '../node_modules/@react-native-masked-view/masked-view' + pod 'RNFlashList', :path => '../node_modules/@shopify/flash-list' + pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient' + pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info' + pod 'react-native-image-picker', :path => '../node_modules/react-native-image-picker' + pod 'RNPermissions', :path => '../node_modules/react-native-permissions' + pod 'RNReanimated', :path => '../node_modules/react-native-reanimated' + pod 'react-native-safe-area-context', :path => '../node_modules/react-native-safe-area-context' + pod 'RNScreens', :path => '../node_modules/react-native-screens' + pod 'react-native-simple-toast', :path => '../node_modules/react-native-simple-toast' + pod 'VisionCamera', :path => '../node_modules/react-native-vision-camera' + pod 'react-native-webview', :path => '../node_modules/react-native-webview' post_install do |installer| react_native_post_install( @@ -64,7 +66,6 @@ target 'RNExample' do # necessary for Mac Catalyst builds :mac_catalyst_enabled => false ) - __apply_Xcode_12_5_M1_post_install_workaround(installer) installer.pods_project.build_configurations.each do |config| config.build_settings['ENABLE_BITCODE'] = 'NO' end diff --git a/packages/react-native-room-kit/example/ios/Podfile.lock b/packages/react-native-room-kit/example/ios/Podfile.lock index 5a6ec0f2e..19cb59c91 100644 --- a/packages/react-native-room-kit/example/ios/Podfile.lock +++ b/packages/react-native-room-kit/example/ios/Podfile.lock @@ -1,590 +1,1898 @@ PODS: - - boost (1.76.0) + - boost (1.84.0) - BVLinearGradient (2.8.3): - React-Core - - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - FBLazyVector (0.71.19) - - FBReactNativeSpec (0.71.19): - - RCT-Folly (= 2021.07.22.00) - - RCTRequired (= 0.71.19) - - RCTTypeSafety (= 0.71.19) - - React-Core (= 0.71.19) - - React-jsi (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - Flipper (0.125.0): - - Flipper-Folly (~> 2.6) - - Flipper-RSocket (~> 1.4) - - Flipper-Boost-iOSX (1.76.0.1.11) - - Flipper-DoubleConversion (3.2.0.1) - - Flipper-Fmt (7.1.7) - - Flipper-Folly (2.6.10): - - Flipper-Boost-iOSX - - Flipper-DoubleConversion - - Flipper-Fmt (= 7.1.7) - - Flipper-Glog - - libevent (~> 2.1.12) - - OpenSSL-Universal (= 1.1.1100) - - Flipper-Glog (0.5.0.5) - - Flipper-PeerTalk (0.0.4) - - Flipper-RSocket (1.4.3): - - Flipper-Folly (~> 2.6) - - FlipperKit (0.125.0): - - FlipperKit/Core (= 0.125.0) - - FlipperKit/Core (0.125.0): - - Flipper (~> 0.125.0) - - FlipperKit/CppBridge - - FlipperKit/FBCxxFollyDynamicConvert - - FlipperKit/FBDefines - - FlipperKit/FKPortForwarding - - SocketRocket (~> 0.6.0) - - FlipperKit/CppBridge (0.125.0): - - Flipper (~> 0.125.0) - - FlipperKit/FBCxxFollyDynamicConvert (0.125.0): - - Flipper-Folly (~> 2.6) - - FlipperKit/FBDefines (0.125.0) - - FlipperKit/FKPortForwarding (0.125.0): - - CocoaAsyncSocket (~> 7.6) - - Flipper-PeerTalk (~> 0.0.4) - - FlipperKit/FlipperKitHighlightOverlay (0.125.0) - - FlipperKit/FlipperKitLayoutHelpers (0.125.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutTextSearchable - - FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutHelpers - - YogaKit (~> 1.18) - - FlipperKit/FlipperKitLayoutPlugin (0.125.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutHelpers - - FlipperKit/FlipperKitLayoutIOSDescriptors - - FlipperKit/FlipperKitLayoutTextSearchable - - YogaKit (~> 1.18) - - FlipperKit/FlipperKitLayoutTextSearchable (0.125.0) - - FlipperKit/FlipperKitNetworkPlugin (0.125.0): - - FlipperKit/Core - - FlipperKit/FlipperKitReactPlugin (0.125.0): - - FlipperKit/Core - - FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0): - - FlipperKit/Core - - FlipperKit/SKIOSNetworkPlugin (0.125.0): - - FlipperKit/Core - - FlipperKit/FlipperKitNetworkPlugin - - fmt (6.2.1) + - fast_float (6.1.4) + - FBLazyVector (0.77.3) + - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.71.19): - - hermes-engine/Pre-built (= 0.71.19) - - hermes-engine/Pre-built (0.71.19) + - hermes-engine (0.77.3): + - hermes-engine/Pre-built (= 0.77.3) + - hermes-engine/Pre-built (0.77.3) - HMSAnalyticsSDK (0.0.2) - - HMSBroadcastExtensionSDK (0.0.9) + - HMSBroadcastExtensionSDK (1.0.1) - HMSHLSPlayerSDK (0.0.2): - HMSAnalyticsSDK (= 0.0.2) - HMSNoiseCancellationModels (1.0.0) - - HMSSDK (1.16.5): + - HMSSDK (1.17.0): - HMSAnalyticsSDK (= 0.0.2) - - HMSWebRTC (= 1.0.6172) - - HMSWebRTC (1.0.6172) - - libevent (2.1.12) - - lottie-ios (4.4.1) - - lottie-react-native (6.7.2): - - lottie-ios (= 4.4.1) - - React-Core - - OpenSSL-Universal (1.1.1100) - - Permission-Camera (3.4.0): - - RNPermissions - - Permission-Microphone (3.4.0): - - RNPermissions - - RCT-Folly (2021.07.22.00): + - HMSWebRTC (= 1.0.6174) + - HMSWebRTC (1.0.6174) + - lottie-ios (4.5.0) + - lottie-react-native (7.3.4): + - DoubleConversion + - glog + - hermes-engine + - lottie-ios (= 4.5.0) + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RCT-Folly (2024.11.18.00): + - boost + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - RCT-Folly/Default (= 2024.11.18.00) + - RCT-Folly/Default (2024.11.18.00): + - boost + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - RCT-Folly/Fabric (2024.11.18.00): + - boost + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - RCTDeprecation (0.77.3) + - RCTRequired (0.77.3) + - RCTTypeSafety (0.77.3): + - FBLazyVector (= 0.77.3) + - RCTRequired (= 0.77.3) + - React-Core (= 0.77.3) + - React (0.77.3): + - React-Core (= 0.77.3) + - React-Core/DevSupport (= 0.77.3) + - React-Core/RCTWebSocket (= 0.77.3) + - React-RCTActionSheet (= 0.77.3) + - React-RCTAnimation (= 0.77.3) + - React-RCTBlob (= 0.77.3) + - React-RCTImage (= 0.77.3) + - React-RCTLinking (= 0.77.3) + - React-RCTNetwork (= 0.77.3) + - React-RCTSettings (= 0.77.3) + - React-RCTText (= 0.77.3) + - React-RCTVibration (= 0.77.3) + - React-callinvoker (0.77.3) + - React-Core (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default (= 0.77.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/CoreModulesHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/Default (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/DevSupport (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default (= 0.77.3) + - React-Core/RCTWebSocket (= 0.77.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTActionSheetHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTAnimationHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTBlobHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTImageHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTLinkingHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTNetworkHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTSettingsHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTTextHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTVibrationHeaders (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-Core/RCTWebSocket (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTDeprecation + - React-Core/Default (= 0.77.3) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket (= 0.7.1) + - Yoga + - React-CoreModules (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - RCT-Folly (= 2024.11.18.00) + - RCTTypeSafety (= 0.77.3) + - React-Core/CoreModulesHeaders (= 0.77.3) + - React-jsi (= 0.77.3) + - React-jsinspector + - React-NativeModulesApple + - React-RCTBlob + - React-RCTFBReactNativeSpec + - React-RCTImage (= 0.77.3) + - ReactCommon + - SocketRocket (= 0.7.1) + - React-cxxreact (0.77.3): - boost - DoubleConversion - - fmt (~> 6.2.1) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.3) + - React-debug (= 0.77.3) + - React-jsi (= 0.77.3) + - React-jsinspector + - React-logger (= 0.77.3) + - React-perflogger (= 0.77.3) + - React-runtimeexecutor (= 0.77.3) + - React-timing (= 0.77.3) + - React-debug (0.77.3) + - React-defaultsnativemodule (0.77.3): + - hermes-engine + - RCT-Folly + - React-domnativemodule + - React-featureflagsnativemodule + - React-idlecallbacksnativemodule + - React-jsi + - React-jsiexecutor + - React-microtasksnativemodule + - React-RCTFBReactNativeSpec + - React-domnativemodule (0.77.3): + - hermes-engine + - RCT-Folly + - React-Fabric + - React-FabricComponents + - React-graphics + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/animations (= 0.77.3) + - React-Fabric/attributedstring (= 0.77.3) + - React-Fabric/componentregistry (= 0.77.3) + - React-Fabric/componentregistrynative (= 0.77.3) + - React-Fabric/components (= 0.77.3) + - React-Fabric/core (= 0.77.3) + - React-Fabric/dom (= 0.77.3) + - React-Fabric/imagemanager (= 0.77.3) + - React-Fabric/leakchecker (= 0.77.3) + - React-Fabric/mounting (= 0.77.3) + - React-Fabric/observers (= 0.77.3) + - React-Fabric/scheduler (= 0.77.3) + - React-Fabric/telemetry (= 0.77.3) + - React-Fabric/templateprocessor (= 0.77.3) + - React-Fabric/uimanager (= 0.77.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/animations (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/attributedstring (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistry (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/componentregistrynative (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.77.3) + - React-Fabric/components/root (= 0.77.3) + - React-Fabric/components/view (= 0.77.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/legacyviewmanagerinterop (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/root (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/components/view (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-Fabric/core (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/dom (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/imagemanager (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/leakchecker (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/mounting (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/observers (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/observers/events (= 0.77.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/observers/events (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/scheduler (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/observers/events + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-performancetimeline + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/telemetry (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/templateprocessor (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/uimanager (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric/uimanager/consistency (= 0.77.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-Fabric/uimanager/consistency (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - React-FabricComponents (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-FabricComponents/components (= 0.77.3) + - React-FabricComponents/textlayoutmanager (= 0.77.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-FabricComponents/components/inputaccessory (= 0.77.3) + - React-FabricComponents/components/iostextinput (= 0.77.3) + - React-FabricComponents/components/modal (= 0.77.3) + - React-FabricComponents/components/rncore (= 0.77.3) + - React-FabricComponents/components/safeareaview (= 0.77.3) + - React-FabricComponents/components/scrollview (= 0.77.3) + - React-FabricComponents/components/text (= 0.77.3) + - React-FabricComponents/components/textinput (= 0.77.3) + - React-FabricComponents/components/unimplementedview (= 0.77.3) + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/inputaccessory (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/iostextinput (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/modal (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/rncore (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/safeareaview (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/scrollview (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/text (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/textinput (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/components/unimplementedview (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricComponents/textlayoutmanager (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - Yoga + - React-FabricImage (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Default (= 2021.07.22.00) - - RCT-Folly/Default (2021.07.22.00): - - boost + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - RCTRequired (= 0.77.3) + - RCTTypeSafety (= 0.77.3) + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-jsi + - React-jsiexecutor (= 0.77.3) + - React-logger + - React-rendererdebug + - React-utils + - ReactCommon + - Yoga + - React-featureflags (0.77.3) + - React-featureflagsnativemodule (0.77.3): + - hermes-engine + - RCT-Folly + - React-featureflags + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - ReactCommon/turbomodule/core + - React-graphics (0.77.3): - DoubleConversion - - fmt (~> 6.2.1) + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - RCT-Folly/Futures (2021.07.22.00): - - boost + - RCT-Folly/Fabric (= 2024.11.18.00) + - React-jsi + - React-jsiexecutor + - React-utils + - React-hermes (0.77.3): - DoubleConversion - - fmt (~> 6.2.1) - - glog - - libevent - - RCTRequired (0.71.19) - - RCTTypeSafety (0.71.19): - - FBLazyVector (= 0.71.19) - - RCTRequired (= 0.71.19) - - React-Core (= 0.71.19) - - React (0.71.19): - - React-Core (= 0.71.19) - - React-Core/DevSupport (= 0.71.19) - - React-Core/RCTWebSocket (= 0.71.19) - - React-RCTActionSheet (= 0.71.19) - - React-RCTAnimation (= 0.71.19) - - React-RCTBlob (= 0.71.19) - - React-RCTImage (= 0.71.19) - - React-RCTLinking (= 0.71.19) - - React-RCTNetwork (= 0.71.19) - - React-RCTSettings (= 0.71.19) - - React-RCTText (= 0.71.19) - - React-RCTVibration (= 0.71.19) - - React-callinvoker (0.71.19) - - React-Codegen (0.71.19): - - FBReactNativeSpec + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-cxxreact (= 0.77.3) + - React-jsi + - React-jsiexecutor (= 0.77.3) + - React-jsinspector + - React-perflogger (= 0.77.3) + - React-runtimeexecutor + - React-idlecallbacksnativemodule (0.77.3): - hermes-engine - RCT-Folly - - RCTRequired - - RCTTypeSafety - - React-Core - React-jsi - React-jsiexecutor - - ReactCommon/turbomodule/bridging + - React-RCTFBReactNativeSpec + - React-runtimescheduler - ReactCommon/turbomodule/core - - React-Core (0.71.19): + - React-ImageManager (0.77.3): + - glog + - RCT-Folly/Fabric + - React-Core/Default + - React-debug + - React-Fabric + - React-graphics + - React-rendererdebug + - React-utils + - React-jserrorhandler (0.77.3): - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.71.19) - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-Core/CoreModulesHeaders (0.71.19): + - RCT-Folly/Fabric (= 2024.11.18.00) + - React-cxxreact + - React-debug + - React-featureflags + - React-jsi + - ReactCommon/turbomodule/bridging + - React-jsi (0.77.3): + - boost + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-Core/Default (0.71.19): + - RCT-Folly (= 2024.11.18.00) + - React-jsiexecutor (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-Core/DevSupport (0.71.19): + - RCT-Folly (= 2024.11.18.00) + - React-cxxreact (= 0.77.3) + - React-jsi (= 0.77.3) + - React-jsinspector + - React-perflogger (= 0.77.3) + - React-jsinspector (0.77.3): + - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.71.19) - - React-Core/RCTWebSocket (= 0.71.19) - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-jsinspector (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-Core/RCTActionSheetHeaders (0.71.19): + - RCT-Folly (= 2024.11.18.00) + - React-featureflags + - React-jsi + - React-perflogger (= 0.77.3) + - React-runtimeexecutor (= 0.77.3) + - React-jsitracing (0.77.3): + - React-jsi + - React-logger (0.77.3): + - glog + - React-Mapbuffer (0.77.3): - glog + - React-debug + - React-microtasksnativemodule (0.77.3): - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-Core/RCTAnimationHeaders (0.71.19): + - RCT-Folly + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - ReactCommon/turbomodule/core + - react-native-blur (4.4.1): + - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core - Yoga - - React-Core/RCTBlobHeaders (0.71.19): + - react-native-hms (1.12.0): + - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) + - HMSBroadcastExtensionSDK (= 1.0.1) + - HMSHLSPlayerSDK (= 0.0.2) + - HMSNoiseCancellationModels (= 1.0.0) + - HMSSDK (= 1.17.0) + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core - Yoga - - React-Core/RCTImageHeaders (0.71.19): + - react-native-image-picker (7.2.3): + - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core - Yoga - - React-Core/RCTLinkingHeaders (0.71.19): + - react-native-lottie-splash-screen (1.1.1): + - React + - react-native-safe-area-context (5.6.1): + - React-Core + - react-native-simple-toast (1.1.3): + - React-Core + - Toast (~> 4.0.0) + - react-native-webview (13.16.0): + - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core - Yoga - - React-Core/RCTNetworkHeaders (0.71.19): + - React-nativeconfig (0.77.3) + - React-NativeModulesApple (0.77.3): - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) + - React-callinvoker + - React-Core + - React-cxxreact + - React-jsi + - React-jsinspector + - React-runtimeexecutor + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - React-perflogger (0.77.3): + - DoubleConversion + - RCT-Folly (= 2024.11.18.00) + - React-performancetimeline (0.77.3): + - RCT-Folly (= 2024.11.18.00) + - React-cxxreact + - React-featureflags + - React-timing + - React-RCTActionSheet (0.77.3): + - React-Core/RCTActionSheetHeaders (= 0.77.3) + - React-RCTAnimation (0.77.3): + - RCT-Folly (= 2024.11.18.00) + - RCTTypeSafety + - React-Core/RCTAnimationHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTFBReactNativeSpec + - ReactCommon + - React-RCTAppDelegate (0.77.3): + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety + - React-Core + - React-CoreModules + - React-debug + - React-defaultsnativemodule + - React-Fabric + - React-featureflags + - React-graphics - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-Core/RCTSettingsHeaders (0.71.19): + - React-nativeconfig + - React-NativeModulesApple + - React-RCTFabric + - React-RCTFBReactNativeSpec + - React-RCTImage + - React-RCTNetwork + - React-rendererdebug + - React-RuntimeApple + - React-RuntimeCore + - React-RuntimeHermes + - React-runtimescheduler + - React-utils + - ReactCommon + - React-RCTBlob (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-Core/RCTBlobHeaders + - React-Core/RCTWebSocket + - React-jsi + - React-jsinspector + - React-NativeModulesApple + - React-RCTFBReactNativeSpec + - React-RCTNetwork + - ReactCommon + - React-RCTFabric (0.77.3): - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) + - RCT-Folly/Fabric (= 2024.11.18.00) + - React-Core + - React-debug + - React-Fabric + - React-FabricComponents + - React-FabricImage + - React-featureflags + - React-graphics + - React-ImageManager + - React-jsi + - React-jsinspector + - React-nativeconfig + - React-performancetimeline + - React-RCTImage + - React-RCTText + - React-rendererconsistency + - React-rendererdebug + - React-runtimescheduler + - React-utils - Yoga - - React-Core/RCTTextHeaders (0.71.19): - - glog + - React-RCTFBReactNativeSpec (0.77.3): - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-jsi + - React-jsiexecutor + - React-NativeModulesApple + - ReactCommon + - React-RCTImage (0.77.3): + - RCT-Folly (= 2024.11.18.00) + - RCTTypeSafety + - React-Core/RCTImageHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTFBReactNativeSpec + - React-RCTNetwork + - ReactCommon + - React-RCTLinking (0.77.3): + - React-Core/RCTLinkingHeaders (= 0.77.3) + - React-jsi (= 0.77.3) + - React-NativeModulesApple + - React-RCTFBReactNativeSpec + - ReactCommon + - ReactCommon/turbomodule/core (= 0.77.3) + - React-RCTNetwork (0.77.3): + - RCT-Folly (= 2024.11.18.00) + - RCTTypeSafety + - React-Core/RCTNetworkHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTFBReactNativeSpec + - ReactCommon + - React-RCTSettings (0.77.3): + - RCT-Folly (= 2024.11.18.00) + - RCTTypeSafety + - React-Core/RCTSettingsHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTFBReactNativeSpec + - ReactCommon + - React-RCTText (0.77.3): + - React-Core/RCTTextHeaders (= 0.77.3) - Yoga - - React-Core/RCTVibrationHeaders (0.71.19): - - glog + - React-RCTVibration (0.77.3): + - RCT-Folly (= 2024.11.18.00) + - React-Core/RCTVibrationHeaders + - React-jsi + - React-NativeModulesApple + - React-RCTFBReactNativeSpec + - ReactCommon + - React-rendererconsistency (0.77.3) + - React-rendererdebug (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) + - RCT-Folly (= 2024.11.18.00) + - React-debug + - React-rncore (0.77.3) + - React-RuntimeApple (0.77.3): - hermes-engine - - RCT-Folly (= 2021.07.22.00) + - RCT-Folly/Fabric (= 2024.11.18.00) + - React-callinvoker - React-Core/Default - - React-cxxreact (= 0.71.19) - - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-Core/RCTWebSocket (0.71.19): + - React-CoreModules + - React-cxxreact + - React-featureflags + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-Mapbuffer + - React-NativeModulesApple + - React-RCTFabric + - React-RCTFBReactNativeSpec + - React-RuntimeCore + - React-runtimeexecutor + - React-RuntimeHermes + - React-runtimescheduler + - React-utils + - React-RuntimeCore (0.77.3): - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Core/Default (= 0.71.19) - - React-cxxreact (= 0.71.19) + - RCT-Folly/Fabric (= 2024.11.18.00) + - React-cxxreact + - React-Fabric + - React-featureflags + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-performancetimeline + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - React-runtimeexecutor (0.77.3): + - React-jsi (= 0.77.3) + - React-RuntimeHermes (0.77.3): + - hermes-engine + - RCT-Folly/Fabric (= 2024.11.18.00) + - React-featureflags - React-hermes - - React-jsi (= 0.71.19) - - React-jsiexecutor (= 0.71.19) - - React-perflogger (= 0.71.19) - - Yoga - - React-CoreModules (0.71.19): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.71.19) - - React-Codegen (= 0.71.19) - - React-Core/CoreModulesHeaders (= 0.71.19) - - React-jsi (= 0.71.19) - - React-RCTBlob - - React-RCTImage (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-cxxreact (0.71.19): - - boost (= 1.76.0) - - DoubleConversion + - React-jsi + - React-jsinspector + - React-jsitracing + - React-nativeconfig + - React-RuntimeCore + - React-utils + - React-runtimescheduler (0.77.3): + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker + - React-cxxreact + - React-debug + - React-featureflags + - React-jsi + - React-performancetimeline + - React-rendererconsistency + - React-rendererdebug + - React-runtimeexecutor + - React-timing + - React-utils + - React-timing (0.77.3) + - React-utils (0.77.3): - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.71.19) - - React-jsi (= 0.71.19) - - React-jsinspector (= 0.71.19) - - React-logger (= 0.71.19) - - React-perflogger (= 0.71.19) - - React-runtimeexecutor (= 0.71.19) - - React-hermes (0.71.19): + - RCT-Folly (= 2024.11.18.00) + - React-debug + - React-jsi (= 0.77.3) + - ReactAppDependencyProvider (0.77.3): + - ReactCodegen + - ReactCodegen (0.77.3): - DoubleConversion - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - RCT-Folly/Futures (= 2021.07.22.00) - - React-cxxreact (= 0.71.19) + - RCT-Folly + - RCTRequired + - RCTTypeSafety + - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-featureflags + - React-graphics - React-jsi - - React-jsiexecutor (= 0.71.19) - - React-jsinspector (= 0.71.19) - - React-perflogger (= 0.71.19) - - React-jsi (0.71.19): - - boost (= 1.76.0) + - React-jsiexecutor + - React-NativeModulesApple + - React-RCTAppDelegate + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - ReactCommon (0.77.3): + - ReactCommon/turbomodule (= 0.77.3) + - ReactCommon/turbomodule (0.77.3): - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-jsiexecutor (0.71.19): + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.3) + - React-cxxreact (= 0.77.3) + - React-jsi (= 0.77.3) + - React-logger (= 0.77.3) + - React-perflogger (= 0.77.3) + - ReactCommon/turbomodule/bridging (= 0.77.3) + - ReactCommon/turbomodule/core (= 0.77.3) + - ReactCommon/turbomodule/bridging (0.77.3): - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-cxxreact (= 0.71.19) - - React-jsi (= 0.71.19) - - React-perflogger (= 0.71.19) - - React-jsinspector (0.71.19) - - React-logger (0.71.19): + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.3) + - React-cxxreact (= 0.77.3) + - React-jsi (= 0.77.3) + - React-logger (= 0.77.3) + - React-perflogger (= 0.77.3) + - ReactCommon/turbomodule/core (0.77.3): + - DoubleConversion + - fast_float (= 6.1.4) + - fmt (= 11.0.2) - glog - - react-native-blur (4.4.0): - - RCT-Folly (= 2021.07.22.00) + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - React-callinvoker (= 0.77.3) + - React-cxxreact (= 0.77.3) + - React-debug (= 0.77.3) + - React-featureflags (= 0.77.3) + - React-jsi (= 0.77.3) + - React-logger (= 0.77.3) + - React-perflogger (= 0.77.3) + - React-utils (= 0.77.3) + - RNCAsyncStorage (1.24.0): - React-Core - - react-native-camera (4.2.1): + - RNCMaskedView (0.3.2): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core - - react-native-camera/RCT (= 4.2.1) - - react-native-camera/RN (= 4.2.1) - - react-native-camera/RCT (4.2.1): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNDeviceInfo (14.0.0): - React-Core - - react-native-camera/RN (4.2.1): + - RNFlashList (1.8.3): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core - - react-native-hms (1.11.0): - - HMSBroadcastExtensionSDK (= 0.0.9) - - HMSHLSPlayerSDK (= 0.0.2) - - HMSNoiseCancellationModels (= 1.0.0) - - HMSSDK (= 1.16.5) + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNGestureHandler (2.22.1): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core - - react-native-image-picker (7.1.2): - - RCT-Folly (= 2021.07.22.00) + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNPermissions (4.1.5): - React-Core - - react-native-lottie-splash-screen (1.1.1): - - React - - react-native-safe-area-context (3.3.0): + - RNReanimated (3.16.7): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core - - react-native-simple-toast (1.1.3): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNReanimated/reanimated (= 3.16.7) + - RNReanimated/worklets (= 3.16.7) + - Yoga + - RNReanimated/reanimated (3.16.7): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core - - Toast (~> 4.0.0) - - react-native-webview (13.10.5): - - RCT-Folly (= 2021.07.22.00) - - React-Core - - React-perflogger (0.71.19) - - React-RCTActionSheet (0.71.19): - - React-Core/RCTActionSheetHeaders (= 0.71.19) - - React-RCTAnimation (0.71.19): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.71.19) - - React-Codegen (= 0.71.19) - - React-Core/RCTAnimationHeaders (= 0.71.19) - - React-jsi (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-RCTAppDelegate (0.71.19): - - RCT-Folly + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - RNReanimated/reanimated/apple (= 3.16.7) + - Yoga + - RNReanimated/reanimated/apple (3.16.7): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-RCTBlob (0.71.19): - - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-Codegen (= 0.71.19) - - React-Core/RCTBlobHeaders (= 0.71.19) - - React-Core/RCTWebSocket (= 0.71.19) - - React-jsi (= 0.71.19) - - React-RCTNetwork (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-RCTImage (0.71.19): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.71.19) - - React-Codegen (= 0.71.19) - - React-Core/RCTImageHeaders (= 0.71.19) - - React-jsi (= 0.71.19) - - React-RCTNetwork (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-RCTLinking (0.71.19): - - React-Codegen (= 0.71.19) - - React-Core/RCTLinkingHeaders (= 0.71.19) - - React-jsi (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-RCTNetwork (0.71.19): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.71.19) - - React-Codegen (= 0.71.19) - - React-Core/RCTNetworkHeaders (= 0.71.19) - - React-jsi (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-RCTSettings (0.71.19): - - RCT-Folly (= 2021.07.22.00) - - RCTTypeSafety (= 0.71.19) - - React-Codegen (= 0.71.19) - - React-Core/RCTSettingsHeaders (= 0.71.19) - - React-jsi (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-RCTText (0.71.19): - - React-Core/RCTTextHeaders (= 0.71.19) - - React-RCTVibration (0.71.19): - - RCT-Folly (= 2021.07.22.00) - - React-Codegen (= 0.71.19) - - React-Core/RCTVibrationHeaders (= 0.71.19) - - React-jsi (= 0.71.19) - - ReactCommon/turbomodule/core (= 0.71.19) - - React-runtimeexecutor (0.71.19): - - React-jsi (= 0.71.19) - - ReactCommon/turbomodule/bridging (0.71.19): - - DoubleConversion - - glog - - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.71.19) - - React-Core (= 0.71.19) - - React-cxxreact (= 0.71.19) - - React-jsi (= 0.71.19) - - React-logger (= 0.71.19) - - React-perflogger (= 0.71.19) - - ReactCommon/turbomodule/core (0.71.19): - - DoubleConversion - - glog - - hermes-engine - - RCT-Folly (= 2021.07.22.00) - - React-callinvoker (= 0.71.19) - - React-Core (= 0.71.19) - - React-cxxreact (= 0.71.19) - - React-jsi (= 0.71.19) - - React-logger (= 0.71.19) - - React-perflogger (= 0.71.19) - - RNCAsyncStorage (1.17.11): - - React-Core - - RNCMaskedView (0.2.9): - - React-Core - - RNDeviceInfo (11.1.0): - - React-Core - - RNFlashList (1.7.1): - - RCT-Folly (= 2021.07.22.00) - - React-Core - - RNGestureHandler (2.15.0): - - RCT-Folly (= 2021.07.22.00) - - React-Core - - RNPermissions (3.4.0): - - React-Core - - RNReanimated (3.4.2): - - DoubleConversion - - FBLazyVector - - FBReactNativeSpec + - Yoga + - RNReanimated/worklets (3.16.7): + - DoubleConversion - glog - hermes-engine - - RCT-Folly + - RCT-Folly (= 2024.11.18.00) - RCTRequired - RCTTypeSafety - - React-callinvoker - React-Core - - React-Core/DevSupport - - React-Core/RCTWebSocket - - React-CoreModules - - React-cxxreact - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-RCTActionSheet - - React-RCTAnimation - - React-RCTBlob - - React-RCTImage - - React-RCTLinking - - React-RCTNetwork - - React-RCTSettings - - React-RCTText + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - Yoga - - RNScreens (3.25.0): + - RNScreens (4.18.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.11.18.00) + - RCTRequired + - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric - React-RCTImage - - SocketRocket (0.6.1) + - React-rendererdebug + - React-utils + - ReactCodegen + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - SocketRocket (0.7.1) - Toast (4.0.0) - - Yoga (1.14.0) - - YogaKit (1.18.1): - - Yoga (~> 1.14) + - VisionCamera (4.7.2): + - VisionCamera/Core (= 4.7.2) + - VisionCamera/React (= 4.7.2) + - VisionCamera/Core (4.7.2) + - VisionCamera/React (4.7.2): + - React-Core + - Yoga (0.0.0) DEPENDENCIES: - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) - BVLinearGradient (from `../node_modules/react-native-linear-gradient`) - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) + - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) - - Flipper (= 0.125.0) - - Flipper-Boost-iOSX (= 1.76.0.1.11) - - Flipper-DoubleConversion (= 3.2.0.1) - - Flipper-Fmt (= 7.1.7) - - Flipper-Folly (= 2.6.10) - - Flipper-Glog (= 0.5.0.5) - - Flipper-PeerTalk (= 0.0.4) - - Flipper-RSocket (= 1.4.3) - - FlipperKit (= 0.125.0) - - FlipperKit/Core (= 0.125.0) - - FlipperKit/CppBridge (= 0.125.0) - - FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0) - - FlipperKit/FBDefines (= 0.125.0) - - FlipperKit/FKPortForwarding (= 0.125.0) - - FlipperKit/FlipperKitHighlightOverlay (= 0.125.0) - - FlipperKit/FlipperKitLayoutPlugin (= 0.125.0) - - FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0) - - FlipperKit/FlipperKitNetworkPlugin (= 0.125.0) - - FlipperKit/FlipperKitReactPlugin (= 0.125.0) - - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0) - - FlipperKit/SKIOSNetworkPlugin (= 0.125.0) + - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) - HMSBroadcastExtensionSDK - - libevent (~> 2.1.12) - lottie-react-native (from `../node_modules/lottie-react-native`) - - OpenSSL-Universal (= 1.1.1100) - - Permission-Camera (from `../node_modules/react-native-permissions/ios/Camera`) - - Permission-Microphone (from `../node_modules/react-native-permissions/ios/Microphone`) - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) + - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) + - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) + - RCTRequired (from `../node_modules/react-native/Libraries/Required`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) - - React-Codegen (from `build/generated/ios`) - React-Core (from `../node_modules/react-native/`) - - React-Core/DevSupport (from `../node_modules/react-native/`) - React-Core/RCTWebSocket (from `../node_modules/react-native/`) - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) + - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) + - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`) + - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`) + - React-Fabric (from `../node_modules/react-native/ReactCommon`) + - React-FabricComponents (from `../node_modules/react-native/ReactCommon`) + - React-FabricImage (from `../node_modules/react-native/ReactCommon`) + - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) + - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`) + - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) + - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`) + - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) + - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`) - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) - - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) + - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`) + - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) - React-logger (from `../node_modules/react-native/ReactCommon/logger`) + - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) + - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`) - "react-native-blur (from `../node_modules/@react-native-community/blur`)" - - react-native-camera (from `../node_modules/react-native-camera`) - react-native-hms (from `../../../react-native-hms`) - react-native-image-picker (from `../node_modules/react-native-image-picker`) - react-native-lottie-splash-screen (from `../node_modules/react-native-lottie-splash-screen`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - react-native-simple-toast (from `../node_modules/react-native-simple-toast`) - react-native-webview (from `../node_modules/react-native-webview`) + - React-nativeconfig (from `../node_modules/react-native/ReactCommon`) + - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) + - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`) - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) + - React-RCTFabric (from `../node_modules/react-native/React`) + - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`) - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) - React-RCTText (from `../node_modules/react-native/Libraries/Text`) - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) + - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`) + - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`) + - React-rncore (from `../node_modules/react-native/ReactCommon`) + - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`) + - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`) - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) + - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) + - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) + - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`) + - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) + - ReactAppDependencyProvider (from `build/generated/ios`) + - ReactCodegen (from `build/generated/ios`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-masked-view/masked-view`)" @@ -594,33 +1902,20 @@ DEPENDENCIES: - RNPermissions (from `../node_modules/react-native-permissions`) - RNReanimated (from `../node_modules/react-native-reanimated`) - RNScreens (from `../node_modules/react-native-screens`) + - VisionCamera (from `../node_modules/react-native-vision-camera`) - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) SPEC REPOS: trunk: - - CocoaAsyncSocket - - Flipper - - Flipper-Boost-iOSX - - Flipper-DoubleConversion - - Flipper-Fmt - - Flipper-Folly - - Flipper-Glog - - Flipper-PeerTalk - - Flipper-RSocket - - FlipperKit - - fmt - HMSAnalyticsSDK - HMSBroadcastExtensionSDK - HMSHLSPlayerSDK - HMSNoiseCancellationModels - HMSSDK - HMSWebRTC - - libevent - lottie-ios - - OpenSSL-Universal - SocketRocket - Toast - - YogaKit EXTERNAL SOURCES: boost: @@ -629,52 +1924,79 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-linear-gradient" DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + fast_float: + :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec" FBLazyVector: :path: "../node_modules/react-native/Libraries/FBLazyVector" - FBReactNativeSpec: - :path: "../node_modules/react-native/React/FBReactNativeSpec" + fmt: + :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec" glog: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" + :tag: hermes-2024-11-25-RNv0.77.0-d4f25d534ab744866448b36ca3bf3d97c08e638c lottie-react-native: :path: "../node_modules/lottie-react-native" - Permission-Camera: - :path: "../node_modules/react-native-permissions/ios/Camera" - Permission-Microphone: - :path: "../node_modules/react-native-permissions/ios/Microphone" RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" + RCTDeprecation: + :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" RCTRequired: - :path: "../node_modules/react-native/Libraries/RCTRequired" + :path: "../node_modules/react-native/Libraries/Required" RCTTypeSafety: :path: "../node_modules/react-native/Libraries/TypeSafety" React: :path: "../node_modules/react-native/" React-callinvoker: :path: "../node_modules/react-native/ReactCommon/callinvoker" - React-Codegen: - :path: build/generated/ios React-Core: :path: "../node_modules/react-native/" React-CoreModules: :path: "../node_modules/react-native/React/CoreModules" React-cxxreact: :path: "../node_modules/react-native/ReactCommon/cxxreact" + React-debug: + :path: "../node_modules/react-native/ReactCommon/react/debug" + React-defaultsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults" + React-domnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom" + React-Fabric: + :path: "../node_modules/react-native/ReactCommon" + React-FabricComponents: + :path: "../node_modules/react-native/ReactCommon" + React-FabricImage: + :path: "../node_modules/react-native/ReactCommon" + React-featureflags: + :path: "../node_modules/react-native/ReactCommon/react/featureflags" + React-featureflagsnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags" + React-graphics: + :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" React-hermes: :path: "../node_modules/react-native/ReactCommon/hermes" + React-idlecallbacksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" + React-ImageManager: + :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" + React-jserrorhandler: + :path: "../node_modules/react-native/ReactCommon/jserrorhandler" React-jsi: :path: "../node_modules/react-native/ReactCommon/jsi" React-jsiexecutor: :path: "../node_modules/react-native/ReactCommon/jsiexecutor" React-jsinspector: - :path: "../node_modules/react-native/ReactCommon/jsinspector" + :path: "../node_modules/react-native/ReactCommon/jsinspector-modern" + React-jsitracing: + :path: "../node_modules/react-native/ReactCommon/hermes/executor/" React-logger: :path: "../node_modules/react-native/ReactCommon/logger" + React-Mapbuffer: + :path: "../node_modules/react-native/ReactCommon" + React-microtasksnativemodule: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks" react-native-blur: :path: "../node_modules/@react-native-community/blur" - react-native-camera: - :path: "../node_modules/react-native-camera" react-native-hms: :path: "../../../react-native-hms" react-native-image-picker: @@ -687,8 +2009,14 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-simple-toast" react-native-webview: :path: "../node_modules/react-native-webview" + React-nativeconfig: + :path: "../node_modules/react-native/ReactCommon" + React-NativeModulesApple: + :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" React-perflogger: :path: "../node_modules/react-native/ReactCommon/reactperflogger" + React-performancetimeline: + :path: "../node_modules/react-native/ReactCommon/react/performance/timeline" React-RCTActionSheet: :path: "../node_modules/react-native/Libraries/ActionSheetIOS" React-RCTAnimation: @@ -697,6 +2025,10 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/Libraries/AppDelegate" React-RCTBlob: :path: "../node_modules/react-native/Libraries/Blob" + React-RCTFabric: + :path: "../node_modules/react-native/React" + React-RCTFBReactNativeSpec: + :path: "../node_modules/react-native/React" React-RCTImage: :path: "../node_modules/react-native/Libraries/Image" React-RCTLinking: @@ -709,8 +2041,30 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/Libraries/Text" React-RCTVibration: :path: "../node_modules/react-native/Libraries/Vibration" + React-rendererconsistency: + :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency" + React-rendererdebug: + :path: "../node_modules/react-native/ReactCommon/react/renderer/debug" + React-rncore: + :path: "../node_modules/react-native/ReactCommon" + React-RuntimeApple: + :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios" + React-RuntimeCore: + :path: "../node_modules/react-native/ReactCommon/react/runtime" React-runtimeexecutor: :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" + React-RuntimeHermes: + :path: "../node_modules/react-native/ReactCommon/react/runtime" + React-runtimescheduler: + :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" + React-timing: + :path: "../node_modules/react-native/ReactCommon/react/timing" + React-utils: + :path: "../node_modules/react-native/ReactCommon/react/utils" + ReactAppDependencyProvider: + :path: build/generated/ios + ReactCodegen: + :path: build/generated/ios ReactCommon: :path: "../node_modules/react-native/ReactCommon" RNCAsyncStorage: @@ -729,88 +2083,106 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-reanimated" RNScreens: :path: "../node_modules/react-native-screens" + VisionCamera: + :path: "../node_modules/react-native-vision-camera" Yoga: :path: "../node_modules/react-native/ReactCommon/yoga" SPEC CHECKSUMS: - boost: 7dcd2de282d72e344012f7d6564d024930a6a440 - BVLinearGradient: 880f91a7854faff2df62518f0281afb1c60d49a3 - CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 - DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 - FBLazyVector: 038aa5ab388c9eec7a6a65b71596afd9ff99c949 - FBReactNativeSpec: 25c3e937fdcfe4d7c898449051e1f30b93cc99ce - Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0 - Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c - Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30 - Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b - Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3 - Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446 - Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 - Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 - FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86 - fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b - hermes-engine: 1468b458e81705fcd55ed6e29c32ff069f04b69c + boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 + BVLinearGradient: cb006ba232a1f3e4f341bb62c42d1098c284da70 + DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb + fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 + FBLazyVector: 23d8c5470c648a635893dc0956c6dbaead54b656 + fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd + glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8 + hermes-engine: b2187dbe13edb0db8fcb2a93a69c1987a30d98a4 HMSAnalyticsSDK: 4d2a88a729b1eb42f3d25f217c28937ec318a5b7 - HMSBroadcastExtensionSDK: d80fe325f6c928bd8e5176290b5a4b7ae15d6fbb + HMSBroadcastExtensionSDK: b32e14990cffd773fb5b5219a4dd56b05bef3b29 HMSHLSPlayerSDK: 6a54ad4d12f3dc2270d1ecd24019d71282a4f6a3 HMSNoiseCancellationModels: a3bda1405a16015632f4bcabd46ce48f35103b02 - HMSSDK: 7c7a94498f66051e6de6f1f9d07e9ffa07299d17 - HMSWebRTC: 4d656cc5d19732ae667d6bc1f6f5511f196ef0eb - libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 - lottie-ios: e047b1d2e6239b787cc5e9755b988869cf190494 - lottie-react-native: 17547b2f3c7034e2ae8672833fdb63262164d18a - OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c - Permission-Camera: 40f43388fa8a648dc6ced73f145ef329ab3ff3fe - Permission-Microphone: 62492e9e3026112dfaecd6fff87a245c3d7367b8 - RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1 - RCTRequired: 79b5f823c2b4b865451ba9ddb33c676786760ea8 - RCTTypeSafety: 4f6d5414413d8848923ccd448c4cef4b6ffcd403 - React: d277ab7d840987a460690fcbe979e9234785ad63 - React-callinvoker: 2d15c3bc682ef720a9a23428606aab643df74622 - React-Codegen: f00947eb19953c13e78c38d73233706e4d6f9bcb - React-Core: b3d9f6a3a406fb3a6ee84f98df0a3e45df3aed99 - React-CoreModules: a70aed68d7cf8bb94f368cbfc8da02d9586e6a65 - React-cxxreact: 12d097fb82c333c4a193cd2cd2111b0295257453 - React-hermes: fa22fb2131e784d87105343833d88c1dc6971676 - React-jsi: a7a06cf56e5af973a35972aa57443629d5621aed - React-jsiexecutor: 7263801e44e004967685dd40672bfcedcda00834 - React-jsinspector: e591d9ecb571456fc929ee10409d8847a442d6a7 - React-logger: 70ddbe0e07179c8adb94c4bffc36c6abc952d3d4 - react-native-blur: 69ecfe61d81b32ee7baae10f5d17aeb4e2594b10 - react-native-camera: 3eae183c1d111103963f3dd913b65d01aef8110f - react-native-hms: e5eb65e9c25f1256c3c6fa454a16e57214575919 - react-native-image-picker: 51fdb07f7ef722988c8a219e1416153760a25e4d - react-native-lottie-splash-screen: 015423265bac5f46016dff2e31c97b9590808856 - react-native-safe-area-context: 61c8c484a3a9e7d1fda19f7b1794b35bbfd2262a - react-native-simple-toast: bf002828cf816775a6809f7a9ec3907509bce11f - react-native-webview: f817a7bfd394634877638019ceac547996561372 - React-perflogger: 0ba097528e325435aca94b32b5330f58f6acb6fb - React-RCTActionSheet: 805b3a83f3dd7ae5a1213ea9df0ed748eeb74b85 - React-RCTAnimation: 2a0233681dee47e468302b8233652b35b68329cb - React-RCTAppDelegate: 3171d94d0ce2ed7fcf982689cd6bbaf4a8721ce8 - React-RCTBlob: 8c6962fcab4a5a3d0078a3a4a98bb914a7703abf - React-RCTImage: 015ce2b9d2ad78c24deee5c807d88574225974f3 - React-RCTLinking: 6dd57d2d99ecdf6ee016c5a742ed9b68cdc8680a - React-RCTNetwork: f14e9681496cd394196c2417966769d10b45e674 - React-RCTSettings: ce9d4d7dda6ad00acb1460a1a3a286d7e4e950bd - React-RCTText: 4cbca7004176dd0ed495afa60a3978acf040059d - React-RCTVibration: 5b2bfab941e938ee5060acefdd7598077b394975 - React-runtimeexecutor: b9be1f58ce9a8b849cb8a37dd998f04ca97e3619 - ReactCommon: bb3d7051c9b8c58ee34f9af76f883bd0fd7c9c31 - RNCAsyncStorage: 8616bd5a58af409453ea4e1b246521bb76578d60 - RNCMaskedView: 949696f25ec596bfc697fc88e6f95cf0c79669b6 - RNDeviceInfo: b899ce37a403a4dea52b7cb85e16e49c04a5b88e - RNFlashList: fadf593d8e195ce2fe261980ac59e9f49808b68c - RNGestureHandler: 7909c50383a18f0cb10ce1db7262b9a6da504c03 - RNPermissions: eac721f71748c4472d6e876038270b75397d6ee7 - RNReanimated: 49cdb63e767bb7e743ff4c12f7d85722c0d008f2 - RNScreens: 85d3880b52d34db7b8eeebe2f1a0e807c05e69fa - SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 + HMSSDK: 949917ebecb66845558407f8e3b3bfeef5332b02 + HMSWebRTC: 2a9db363e4bfb2d633ab688c04f47ec20767b4ac + lottie-ios: a881093fab623c467d3bce374367755c272bdd59 + lottie-react-native: 0fdfbaa934fc6d3acbffbac5fb4d73d48e37fdf5 + RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82 + RCTDeprecation: 6ee92578d332db1d4e03267d3ae98bcf8b780863 + RCTRequired: 5b3da0e0f91fddda935574b81748c3e3d3649ee7 + RCTTypeSafety: 870cb072be3d3f310ecec897c3d297a931f8f7e1 + React: 535fa5014fb1743f6654a980acb16dae339e1944 + React-callinvoker: dd1ecd51f8d3c76a551afdf6dab6d51c1ead5501 + React-Core: a3e36c059a195bd213d005db36c9e68957b78632 + React-CoreModules: 46467a2b34b053eb7262104e07bf5d835a9afe77 + React-cxxreact: 500e7b011a14eeefdcf6c0eb982fe4db055c2670 + React-debug: 41315631a01cf5cc3c9498482b97be21c49f8e8d + React-defaultsnativemodule: a06364257949e77dc39bcfd08e2d801c189bb58c + React-domnativemodule: dcda8a2b62bb34ed5db94470a3a72f32a76e1e31 + React-Fabric: dc1d3aa4b6a92e4a703c02ca6c4add312754eb84 + React-FabricComponents: 451f7b72aa80001520a20747b7b1e21350d6fba8 + React-FabricImage: 15c3bfe577a60c492134519219627316fb48af05 + React-featureflags: 08f06c820a37b29ed3ef9dddc6763c086339bc28 + React-featureflagsnativemodule: 3f6b19ac469a5d26e3a52e5198735c1799f1e324 + React-graphics: df8448a604e8fd03325e0f3d760b13e57416871c + React-hermes: 67f3ee00fdbe085e722fd89811073678ba28c10a + React-idlecallbacksnativemodule: 26de008466429c4a6feb772cde37d3eda5c1e045 + React-ImageManager: 52a8c48c4c7c5a8124e8c363693bd2908b01c5f6 + React-jserrorhandler: faa483d54dd358b11e81adcd5e6373da6030ed70 + React-jsi: d5332d79759159a0127348d9b20cc90527dd40e8 + React-jsiexecutor: 72c8df1af2c18736f6685cce4205c480f3783039 + React-jsinspector: e444c5725dbb31aa7ce556d972511f8997b38bc5 + React-jsitracing: 955646960c72c03e6e87df8706cab6bcdf960042 + React-logger: a23563f96a622637d7cce687bdf304929104effd + React-Mapbuffer: 1864935968d15b9b73d8e413d29c780f0ab50038 + React-microtasksnativemodule: 3b784cf40f7c3c9500b9a5f9e4eec5c9bbfbef8f + react-native-blur: b06c3fe88680beac622d8d13b8c36ec15c50383b + react-native-hms: a56359002bff27326ad1e88225b34c7ddb3381d6 + react-native-image-picker: 8c8f120521f283d7a069c51d519fbd654e8de8e3 + react-native-lottie-splash-screen: e7820832f194c296ccdb177a82d8a3f3b7e362bf + react-native-safe-area-context: 2243039f43d10cb1ea30ec5ac57fc6d1448413f4 + react-native-simple-toast: 80e940ed66e6522d19653bebaaa11949b6a2cd1e + react-native-webview: d9d01324f104e41fe57b8ddd048acd9e1e39caf5 + React-nativeconfig: f77b4627803bf7886a1f2e96b33b8af34e583cc4 + React-NativeModulesApple: dfa86c79c621f2a9cdb39636570c2e1623b71367 + React-perflogger: 1f83401f01544142b32151ef6c66870455c64994 + React-performancetimeline: 514430bf73208debfb0b9981fdab0e3e67987447 + React-RCTActionSheet: f8f5545f473a87a8ab124046fe58905b82c55322 + React-RCTAnimation: bb5332589ee135a4b3e06f9475659ae73a36f669 + React-RCTAppDelegate: f1504dd62d2c16d85840698539a2a3163d629072 + React-RCTBlob: 9305f10874660b7d7bd02f6567e1b97c29b5cc43 + React-RCTFabric: 8ca1af21e65c1f1fe2fff1f3e931b1e74f7c552a + React-RCTFBReactNativeSpec: 288abdd04806d4a5e9a079717011bf5fa281eaf7 + React-RCTImage: f099c09decb34b6849518e85aa8cd6318381ed98 + React-RCTLinking: ab70f4b60e21b0abb8c2adc58ae0460cffecdd8f + React-RCTNetwork: ba84704fa893dcc090d5028b932ed049332b9e6f + React-RCTSettings: bad043f6652f2641fccf9654c3f789e970ca63c8 + React-RCTText: bed66ec05d4dedfc48d6db8d3cf60e714b2d010d + React-RCTVibration: 22179961d1aadd7996355785c490c134037de1d9 + React-rendererconsistency: 9f5292176e629370402cbfe4e88c19b3c68e79a3 + React-rendererdebug: 1d63129046b7a8624f0a5d2cb4cc4a1dda41eeaf + React-rncore: 8a77fbb638aab2ef0a3e4e122ddc5310a8299699 + React-RuntimeApple: cf68b82dc184c7f8855aa6bae298b4b24880d549 + React-RuntimeCore: 98ab2e46540d3560712334257b01d6305c0cb422 + React-runtimeexecutor: 2dc71d251ce5630b11d384bc80d7fbb9d9d93623 + React-RuntimeHermes: 7cc49896e48214abee8f2a9bf91e7a91606ff018 + React-runtimescheduler: a51c3e414e288f3ab876b8b6e50e89c805ffd704 + React-timing: 7d80ad4297c57ec4cb49da4a5db1b82f93fedb2a + React-utils: 6b632afea2c4ec4b782497fb61af859a5b1b355f + ReactAppDependencyProvider: 31015410a4a53b9fd0a908ad4d6e3e2b9a25086a + ReactCodegen: eac5d74d85dff515b48a5c36f154bc4128f217e6 + ReactCommon: bf4612cba0fa356b529385029f470d5529dddde4 + RNCAsyncStorage: b6410dead2732b5c72a7fdb1ecb5651bbcf4674b + RNCMaskedView: 2a1adda250c1b71134fa097ae7fc56e0b41ca01e + RNDeviceInfo: f632df5f5d9262794c03eac265e4a0f6dbb14f0a + RNFlashList: e2981ad152fadf10f3b05e56cba9888317d85458 + RNGestureHandler: 6d231bf41166c01b8234f0b7b24d73d82e44ef4c + RNPermissions: 8b84b820d31d3cf1574c79e85fa1badf3fce62ce + RNReanimated: 9821995bd24f989b2618eac9510dc86c14d0a5df + RNScreens: 4369e7ae645058ce553eb6b206fd8ff77a3c3882 + SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 Toast: 91b396c56ee72a5790816f40d3a94dd357abc196 - Yoga: d4f5b037672e6b68ba484c7cf7fe6790122df792 - YogaKit: f782866e155069a2cca2517aafea43200b01fd5a + VisionCamera: 30b358b807324c692064f78385e9a732ce1bebfe + Yoga: 92f3bb322c40a86b7233b815854730442e01b8c4 -PODFILE CHECKSUM: 440c5db981e251f84a8014dc4bb283bedd3fedea +PODFILE CHECKSUM: 725cff8f0f0daa76a6e737c8c869813a0c0c238c -COCOAPODS: 1.15.2 +COCOAPODS: 1.16.2 diff --git a/packages/react-native-room-kit/example/ios/PrivacyInfo.xcprivacy b/packages/react-native-room-kit/example/ios/PrivacyInfo.xcprivacy index 2e89b87f2..b9ce575f6 100644 --- a/packages/react-native-room-kit/example/ios/PrivacyInfo.xcprivacy +++ b/packages/react-native-room-kit/example/ios/PrivacyInfo.xcprivacy @@ -2,23 +2,6 @@ - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeDeviceID - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeAppFunctionality - - - - NSPrivacyTracking - NSPrivacyAccessedAPITypes @@ -26,33 +9,53 @@ NSPrivacyAccessedAPICategoryFileTimestamp NSPrivacyAccessedAPITypeReasons + C617.1 3B52.1 NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryDiskSpace + NSPrivacyAccessedAPICategorySystemBootTime NSPrivacyAccessedAPITypeReasons - E174.1 + 35F9.1 NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPICategoryUserDefaults NSPrivacyAccessedAPITypeReasons - 35F9.1 + CA92.1 + C56D.1 NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPICategoryDiskSpace NSPrivacyAccessedAPITypeReasons - CA92.1 + 85F4.1 + E174.1 + + + + NSPrivacyCollectedDataTypes + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeDeviceID + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + NSPrivacyCollectedDataTypeTracking + + NSPrivacyTracking + diff --git a/packages/react-native-room-kit/example/ios/RNExample-Bridging-Header.h b/packages/react-native-room-kit/example/ios/RNExample-Bridging-Header.h index cc87e1d15..d281acaf1 100644 --- a/packages/react-native-room-kit/example/ios/RNExample-Bridging-Header.h +++ b/packages/react-native-room-kit/example/ios/RNExample-Bridging-Header.h @@ -1,8 +1,8 @@ -// HyperMoney-Bridging-Header.h +// RNExample-Bridging-Header.h -#ifndef HyperMoney_Bridging_Header_h -#define HyperMoney_Bridging_Header_h +#ifndef RNExample_Bridging_Header_h +#define RNExample_Bridging_Header_h -#import "RNSplashScreen.h" // here +#import "RNSplashScreen.h" -#endif /* HyperMoney_Bridging_Header_h */ +#endif /* RNExample_Bridging_Header_h */ diff --git a/packages/react-native-room-kit/example/ios/RNExample.xcodeproj/project.pbxproj b/packages/react-native-room-kit/example/ios/RNExample.xcodeproj/project.pbxproj index cbaebf6bd..2f4e4cb47 100644 --- a/packages/react-native-room-kit/example/ios/RNExample.xcodeproj/project.pbxproj +++ b/packages/react-native-room-kit/example/ios/RNExample.xcodeproj/project.pbxproj @@ -496,12 +496,12 @@ CODE_SIGN_ENTITLEMENTS = RNExample/RNExample.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 541; + CURRENT_PROJECT_VERSION = 547; DEVELOPMENT_TEAM = 5N85PP82A9; ENABLE_BITCODE = NO; INFOPLIST_FILE = RNExample/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -534,12 +534,12 @@ CODE_SIGN_ENTITLEMENTS = RNExample/RNExample.entitlements; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 541; + CURRENT_PROJECT_VERSION = 547; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 5N85PP82A9; INFOPLIST_FILE = RNExample/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -567,7 +567,7 @@ buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; @@ -612,7 +612,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -624,9 +624,13 @@ ); MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; + OTHER_CFLAGS = "$(inherited)"; + OTHER_CPLUSPLUSFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; + USE_HERMES = true; }; name = Debug; }; @@ -635,7 +639,7 @@ buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; @@ -676,7 +680,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -687,9 +691,12 @@ "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = NO; + OTHER_CFLAGS = "$(inherited)"; + OTHER_CPLUSPLUSFLAGS = "$(inherited)"; OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; + USE_HERMES = true; VALIDATE_PRODUCT = YES; }; name = Release; @@ -706,7 +713,7 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_ENTITLEMENTS = RNExampleBroadcastUpload/RNExampleBroadcastUpload.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 541; + CURRENT_PROJECT_VERSION = 547; DEBUG_INFORMATION_FORMAT = dwarf; DEVELOPMENT_TEAM = 5N85PP82A9; GCC_C_LANGUAGE_STANDARD = gnu11; @@ -714,7 +721,7 @@ INFOPLIST_FILE = RNExampleBroadcastUpload/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = RNExampleBroadcastUpload; INFOPLIST_KEY_NSHumanReadableCopyright = ""; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -748,7 +755,7 @@ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 541; + CURRENT_PROJECT_VERSION = 547; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = 5N85PP82A9; @@ -757,7 +764,7 @@ INFOPLIST_FILE = RNExampleBroadcastUpload/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = RNExampleBroadcastUpload; INFOPLIST_KEY_NSHumanReadableCopyright = ""; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 16.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/packages/react-native-room-kit/example/ios/RNExample/Info.plist b/packages/react-native-room-kit/example/ios/RNExample/Info.plist index dd7f3e532..56c6fc00f 100644 --- a/packages/react-native-room-kit/example/ios/RNExample/Info.plist +++ b/packages/react-native-room-kit/example/ios/RNExample/Info.plist @@ -21,11 +21,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.4.91 + 2.5.4 CFBundleSignature ???? CFBundleVersion - 541 + 547 ITSAppUsesNonExemptEncryption LSRequiresIPhoneOS diff --git a/packages/react-native-room-kit/example/metro.config.js b/packages/react-native-room-kit/example/metro.config.js index 316895d0d..184aa1a76 100644 --- a/packages/react-native-room-kit/example/metro.config.js +++ b/packages/react-native-room-kit/example/metro.config.js @@ -1,59 +1,94 @@ const path = require('path'); -const blacklist = require('metro-config/src/defaults/exclusionList'); -const escape = require('escape-string-regexp'); +const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config'); -const rnrkLibRoot = path.resolve(__dirname, '..'); -const rnhmsLibRoot = path.resolve(__dirname, '../../react-native-hms'); - -const rnrkLibPackageJson = require('../package.json'); -const rnhmsLibPackageJson = require('../../react-native-hms/package.json'); - -const rnrkModules = Object.keys({ - ...rnrkLibPackageJson.peerDependencies, - ...rnrkLibPackageJson.optionalDependencies, -}); - -const rnhmsModules = Object.keys({ - ...rnhmsLibPackageJson.peerDependencies, -}); - -module.exports = { +const config = { projectRoot: __dirname, - watchFolders: [rnrkLibRoot, rnhmsLibRoot], + watchFolders: [ + path.resolve(__dirname, '..'), + path.resolve(__dirname, '../../react-native-hms'), + path.resolve(__dirname, '../../../../react-native-video-plugin'), + ], resolver: { - blockList: blacklist([ - ...rnrkModules.map( - m => - new RegExp( - `^${escape(path.join(rnrkLibRoot, 'node_modules', m))}\\/.*$`, - ), - ), - ...rnhmsModules.map( - m => - new RegExp( - `^${escape(path.join(rnhmsLibRoot, 'node_modules', m))}\\/.*$`, - ), - ), - ]), - - extraNodeModules: [ - ...new Set([ - ...rnrkModules.filter(module => module !== rnhmsLibPackageJson.name), - ...rnhmsModules, - ]), - ].reduce((acc, name) => { - acc[name] = path.join(__dirname, 'node_modules', name); - return acc; - }, {}), - }, + // Block ALL node_modules from parent packages to prevent duplicate instances + // Only use dependencies from example/node_modules + blockList: [ + /.*\/react-native-room-kit\/node_modules\/.*/, + /.*\/react-native-hms\/node_modules\/.*/, + /.*\/react-native-video-plugin\/node_modules\/.*/, + ], - transformer: { - getTransformOptions: async () => ({ - transform: { - experimentalImportSupport: false, - inlineRequires: true, - }, - }), + // Ensure all packages use dependencies from example/node_modules + // This is critical for monorepo setup to prevent Metro from searching in parent node_modules + extraNodeModules: { + 'react': path.resolve(__dirname, 'node_modules/react'), + 'react-native': path.resolve(__dirname, 'node_modules/react-native'), + '@100mslive/react-native-hms': path.resolve( + __dirname, + 'node_modules/@100mslive/react-native-hms' + ), + '@100mslive/react-native-video-plugin': path.resolve( + __dirname, + 'node_modules/@100mslive/react-native-video-plugin' + ), + '@100mslive/types-prebuilt': path.resolve( + __dirname, + 'node_modules/@100mslive/types-prebuilt' + ), + '@babel/runtime': path.resolve(__dirname, 'node_modules/@babel/runtime'), + '@react-native-community/blur': path.resolve( + __dirname, + 'node_modules/@react-native-community/blur' + ), + '@react-native-masked-view/masked-view': path.resolve( + __dirname, + 'node_modules/@react-native-masked-view/masked-view' + ), + '@react-navigation/native': path.resolve( + __dirname, + 'node_modules/@react-navigation/native' + ), + '@shopify/flash-list': path.resolve( + __dirname, + 'node_modules/@shopify/flash-list' + ), + 'lottie-react-native': path.resolve( + __dirname, + 'node_modules/lottie-react-native' + ), + 'react-native-gesture-handler': path.resolve( + __dirname, + 'node_modules/react-native-gesture-handler' + ), + 'react-native-linear-gradient': path.resolve( + __dirname, + 'node_modules/react-native-linear-gradient' + ), + 'react-native-modal': path.resolve( + __dirname, + 'node_modules/react-native-modal' + ), + 'react-native-reanimated': path.resolve( + __dirname, + 'node_modules/react-native-reanimated' + ), + 'react-native-safe-area-context': path.resolve( + __dirname, + 'node_modules/react-native-safe-area-context' + ), + 'react-native-simple-toast': path.resolve( + __dirname, + 'node_modules/react-native-simple-toast' + ), + 'react-native-webview': path.resolve( + __dirname, + 'node_modules/react-native-webview' + ), + 'react-redux': path.resolve(__dirname, 'node_modules/react-redux'), + 'redux': path.resolve(__dirname, 'node_modules/redux'), + 'zustand': path.resolve(__dirname, 'node_modules/zustand'), + }, }, }; + +module.exports = mergeConfig(getDefaultConfig(__dirname), config); diff --git a/packages/react-native-room-kit/example/package-lock.json b/packages/react-native-room-kit/example/package-lock.json index 7d9c25f9e..455f2daf0 100644 --- a/packages/react-native-room-kit/example/package-lock.json +++ b/packages/react-native-room-kit/example/package-lock.json @@ -1,45 +1,53 @@ { "name": "RNExample", - "version": "1.2.3", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "RNExample", - "version": "1.2.3", + "version": "1.3.0", + "hasInstallScript": true, "dependencies": { - "@100mslive/react-native-video-plugin": "1.0.0", - "@react-native-async-storage/async-storage": "1.17.11", - "@react-native-community/blur": "^4.3.2", - "@react-native-masked-view/masked-view": "^0.2.9", - "@react-navigation/native": "6.1.7", - "@react-navigation/native-stack": "6.5.0", - "@shopify/flash-list": "^1.4.3", - "lottie-react-native": "^6.7.2", - "react": "18.2.0", - "react-native": "0.71.19", - "react-native-camera": "4.2.1", - "react-native-device-info": "11.1.0", - "react-native-gesture-handler": "2.15.0", + "@100mslive/react-native-video-plugin": "file:/Users/yogesh/Programming/react-native-video-plugin", + "@100mslive/types-prebuilt": "^0.12.12", + "@react-native-async-storage/async-storage": "1.24.0", + "@react-native-community/blur": "^4.4.1", + "@react-native-masked-view/masked-view": "^0.3.2", + "@react-navigation/native": "6.1.18", + "@react-navigation/native-stack": "6.11.0", + "@shopify/flash-list": "^1.7.1", + "lottie-react-native": "^7.3.4", + "react": "18.3.1", + "react-native": "0.77.3", + "react-native-device-info": "14.0.0", + "react-native-gesture-handler": "~2.22.0", "react-native-image-picker": "^7.1.2", - "react-native-linear-gradient": "^2.7.3", + "react-native-linear-gradient": "^2.8.3", "react-native-lottie-splash-screen": "github:ygit/react-native-lottie-splash-screen#master", "react-native-modal": "^13.0.1", - "react-native-permissions": "3.4.0", - "react-native-qrcode-scanner": "1.5.5", - "react-native-reanimated": "3.4.2", - "react-native-safe-area-context": "3.3.0", - "react-native-screens": "3.25.0", + "react-native-permissions": "4.1.5", + "react-native-reanimated": "3.16.7", + "react-native-safe-area-context": "^5.6.1", + "react-native-screens": "^4.18.0", "react-native-simple-toast": "1.1.3", - "react-native-webview": "^13.8.7", + "react-native-vision-camera": "^4.7.2", + "react-native-webview": "^13.12.3", "react-redux": "8.1.1", - "redux": "4.2.1" + "redux": "4.2.1", + "zustand": "^5.0.8" }, "devDependencies": { "@babel/core": "^7.20.0", + "@babel/plugin-transform-private-methods": "^7.27.1", "@babel/preset-env": "^7.20.0", - "@babel/runtime": "^7.20.0", + "@babel/runtime": "^7.28.4", + "@react-native-community/cli": "15.1.3", + "@react-native-community/cli-platform-android": "15.1.3", + "@react-native-community/cli-platform-ios": "15.1.3", "@react-native-community/eslint-config": "^3.2.0", + "@react-native/babel-preset": "0.77.3", + "@react-native/metro-config": "0.77.3", "@tsconfig/react-native": "^2.0.2", "@types/jest": "^29.2.1", "@types/react": "^18.3.12", @@ -47,84 +55,99 @@ "@typescript-eslint/parser": "^5.7.0", "babel-jest": "^29.2.1", "babel-plugin-module-resolver": "^5.0.0", + "babel-plugin-syntax-hermes-parser": "^0.32.1", "eslint": "^8.19.0", "jest": "^29.2.1", - "metro-react-native-babel-preset": "0.73.10", + "metro-react-native-babel-preset": "0.77.0", + "patch-package": "^8.0.1", "prettier": "^2.4.1", - "react-test-renderer": "18.2.0", + "react-test-renderer": "18.3.1", "typescript": "4.8.4" } }, - "node_modules/@100mslive/react-native-hms": { - "version": "1.10.9", - "resolved": "https://registry.npmjs.org/@100mslive/react-native-hms/-/react-native-hms-1.10.9.tgz", - "integrity": "sha512-e/fXY/zH1b034uTvhM9gOEXeWw/IuNqiqm22l/kHqA4j9Pcru2c6YkPoExjIoh3C7e9+b+kFo8ug4Olu/riazQ==", - "peer": true, - "dependencies": { - "zustand": "^4.3.8" - }, - "peerDependencies": { + "../../../../react-native-video-plugin": { + "name": "@100mslive/react-native-video-plugin", + "version": "1.1.0", + "license": "MIT", + "workspaces": [ + "example" + ], + "devDependencies": { + "@100mslive/react-native-hms": "portal:/Users/yogesh/Programming/100ms-react-native/packages/react-native-hms", + "@commitlint/config-conventional": "^17.0.2", + "@evilmartians/lefthook": "^1.5.0", + "@react-native/babel-preset": "0.78.1", + "@react-native/eslint-config": "0.78.1", + "@types/jest": "^29.5.5", + "@types/react": "^19.0.6", + "commitlint": "^17.0.2", + "del-cli": "^5.1.0", + "eslint": "^8.51.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-prettier": "^5.0.1", + "jest": "^29.7.0", + "prettier": "^3.0.3", + "react": "19.0.0", + "react-native": "0.78.1", + "react-native-builder-bob": "^0.20.0", + "turbo": "^1.10.7", + "typescript": "^5.7.3" + }, + "peerDependencies": { + "@100mslive/react-native-hms": "^1.12.0", "react": "*", "react-native": "*" } }, "node_modules/@100mslive/react-native-video-plugin": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@100mslive/react-native-video-plugin/-/react-native-video-plugin-1.0.0.tgz", - "integrity": "sha512-B/kjaIZ0n1dRa6A5O6odQGJ8D7jXEv2PCwl45JXXvNLKjhySD4SPS8ZnpMUIqkEaHAPpSEijTrho0/VM3XEzNg==", - "peerDependencies": { - "@100mslive/react-native-hms": "^1.10.9", - "react": "*", - "react-native": "*" - } + "resolved": "../../../../react-native-video-plugin", + "link": true }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } + "node_modules/@100mslive/types-prebuilt": { + "version": "0.12.12", + "resolved": "https://registry.npmjs.org/@100mslive/types-prebuilt/-/types-prebuilt-0.12.12.tgz", + "integrity": "sha512-teywGXsHxuOFaA2pS/z0+wHZfaDzSJSp0hppwtAhW9LW1W+tvz2tJBp5NAZiB7l+iHUR88FnwRhD5WG7G64Rnw==", + "license": "ISC" }, "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", - "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", - "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "license": "MIT", "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.0", - "@babel/helper-compilation-targets": "^7.25.2", - "@babel/helper-module-transforms": "^7.25.2", - "@babel/helpers": "^7.25.0", - "@babel/parser": "^7.25.0", - "@babel/template": "^7.25.0", - "@babel/traverse": "^7.25.2", - "@babel/types": "^7.25.2", + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -140,10 +163,11 @@ } }, "node_modules/@babel/eslint-parser": { - "version": "7.25.1", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.1.tgz", - "integrity": "sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.28.5.tgz", + "integrity": "sha512-fcdRcWahONYo+JRnJg1/AekOacGvKx12Gu0qXJXFi2WBqQA1i7+O5PaxRB7kxE/Op94dExnCiiar6T09pvdHpA==", "dev": true, + "license": "MIT", "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", @@ -158,50 +182,42 @@ } }, "node_modules/@babel/generator": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", - "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.25.0", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", - "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", - "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.25.2", - "@babel/helper-validator-option": "^7.24.8", - "browserslist": "^4.23.1", + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -210,16 +226,17 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.0.tgz", - "integrity": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.8", - "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/helper-replace-supers": "^7.25.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/traverse": "^7.25.0", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz", + "integrity": "sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.28.5", "semver": "^6.3.1" }, "engines": { @@ -230,12 +247,13 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.2.tgz", - "integrity": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", + "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "regexpu-core": "^5.3.1", + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", "semver": "^6.3.1" }, "engines": { @@ -246,15 +264,16 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "debug": "^4.4.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "resolve": "^1.22.10" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -264,6 +283,8 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.24.7" }, @@ -271,39 +292,50 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", - "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.8", - "@babel/types": "^7.24.8" + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", - "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "@babel/traverse": "^7.25.2" + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" }, "engines": { "node": ">=6.9.0" @@ -313,32 +345,35 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", - "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", - "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.0.tgz", - "integrity": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-wrap-function": "^7.25.0", - "@babel/traverse": "^7.25.0" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -348,13 +383,14 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", - "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz", + "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==", + "license": "MIT", "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.24.8", - "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/traverse": "^7.25.0" + "@babel/helper-member-expression-to-functions": "^7.27.1", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -363,99 +399,80 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", - "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", - "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", - "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.0.tgz", - "integrity": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz", + "integrity": "sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==", + "license": "MIT", "dependencies": { - "@babel/template": "^7.25.0", - "@babel/traverse": "^7.25.0", - "@babel/types": "^7.25.0" + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.3", + "@babel/types": "^7.28.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", - "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", - "dependencies": { - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", - "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.25.2" + "@babel/types": "^7.28.5" }, "bin": { "parser": "bin/babel-parser.js" @@ -465,12 +482,13 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.3.tgz", - "integrity": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", + "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/traverse": "^7.25.3" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -480,11 +498,12 @@ } }, "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.0.tgz", - "integrity": "sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -494,11 +513,12 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.0.tgz", - "integrity": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -508,13 +528,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", - "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -524,12 +545,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.0.tgz", - "integrity": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz", + "integrity": "sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/traverse": "^7.25.0" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.3" }, "engines": { "node": ">=6.9.0" @@ -543,6 +565,8 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.", + "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-plugin-utils": "^7.20.2", @@ -561,6 +585,8 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -573,12 +599,12 @@ } }, "node_modules/@babel/plugin-proposal-export-default-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.24.7.tgz", - "integrity": "sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.27.1.tgz", + "integrity": "sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-default-from": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -592,6 +618,8 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -603,11 +631,31 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.20.7", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", + "dev": true, + "license": "MIT", "dependencies": { "@babel/compat-data": "^7.20.5", "@babel/helper-compilation-targets": "^7.20.7", @@ -627,6 +675,8 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.", + "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" @@ -643,6 +693,8 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2", "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", @@ -659,6 +711,7 @@ "version": "7.21.0-placeholder-for-preset-env.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "license": "MIT", "engines": { "node": ">=6.9.0" }, @@ -670,6 +723,7 @@ "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -681,7 +735,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -693,6 +747,7 @@ "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -704,6 +759,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -718,6 +774,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -726,11 +783,12 @@ } }, "node_modules/@babel/plugin-syntax-export-default-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.24.7.tgz", - "integrity": "sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.27.1.tgz", + "integrity": "sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -739,23 +797,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.7.tgz", - "integrity": "sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.27.1.tgz", + "integrity": "sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -765,11 +813,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", - "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz", + "integrity": "sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -779,11 +828,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", - "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz", + "integrity": "sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -796,6 +846,7 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -807,6 +858,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -815,11 +867,12 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", - "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz", + "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -832,6 +885,7 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -843,6 +897,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -854,6 +909,7 @@ "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -865,6 +921,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -876,6 +933,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -887,6 +945,7 @@ "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -898,6 +957,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -912,6 +972,7 @@ "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -923,11 +984,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz", - "integrity": "sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz", + "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -940,6 +1002,7 @@ "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -952,11 +1015,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", - "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -966,14 +1030,14 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.0.tgz", - "integrity": "sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", + "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-remap-async-to-generator": "^7.25.0", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/traverse": "^7.25.0" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.28.0" }, "engines": { "node": ">=6.9.0" @@ -983,13 +1047,14 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", - "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-remap-async-to-generator": "^7.24.7" + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -999,11 +1064,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", - "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1013,11 +1079,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.0.tgz", - "integrity": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz", + "integrity": "sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1027,12 +1094,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", - "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz", + "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1042,13 +1110,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", - "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz", + "integrity": "sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1058,16 +1126,17 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.0.tgz", - "integrity": "sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz", + "integrity": "sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.8", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-replace-supers": "^7.25.0", - "@babel/traverse": "^7.25.0", - "globals": "^11.1.0" + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1", + "@babel/traverse": "^7.28.4" }, "engines": { "node": ">=6.9.0" @@ -1077,12 +1146,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", - "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz", + "integrity": "sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/template": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/template": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1092,11 +1162,13 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", - "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", + "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -1106,12 +1178,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", - "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz", + "integrity": "sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1121,11 +1194,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", - "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1135,12 +1209,13 @@ } }, "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.0.tgz", - "integrity": "sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.0", - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1150,12 +1225,28 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", - "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz", + "integrity": "sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0" }, "engines": { "node": ">=6.9.0" @@ -1165,12 +1256,12 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", - "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz", + "integrity": "sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==", + "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1180,12 +1271,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", - "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1195,12 +1286,13 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.2.tgz", - "integrity": "sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.27.1.tgz", + "integrity": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/plugin-syntax-flow": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-flow": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1210,12 +1302,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", - "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1225,13 +1318,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.25.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.1.tgz", - "integrity": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.24.8", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/traverse": "^7.25.1" + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1241,12 +1335,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", - "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz", + "integrity": "sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1256,11 +1350,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.2.tgz", - "integrity": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1270,12 +1365,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", - "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz", + "integrity": "sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1285,11 +1380,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", - "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1299,12 +1395,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", - "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1314,13 +1411,13 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", - "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz", + "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.24.8", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-simple-access": "^7.24.7" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1330,14 +1427,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.0.tgz", - "integrity": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz", + "integrity": "sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.25.0", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-validator-identifier": "^7.24.7", - "@babel/traverse": "^7.25.0" + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -1347,12 +1445,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", - "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1362,12 +1461,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", - "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz", + "integrity": "sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1377,11 +1477,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", - "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1391,12 +1492,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", - "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz", + "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1406,12 +1507,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", - "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz", + "integrity": "sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1420,12 +1521,17 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-assign": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.24.7.tgz", - "integrity": "sha512-DOzAi77P9jSyPijHS7Z8vH0wLRcZH6wWxuIZgLAiy8FWOkcKMJmnyHjy2JM94k6A0QxlA/hlLh+R9T3GEryjNQ==", + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz", + "integrity": "sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.4" }, "engines": { "node": ">=6.9.0" @@ -1434,15 +1540,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", - "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1451,13 +1556,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", - "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz", + "integrity": "sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1466,13 +1571,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", - "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz", + "integrity": "sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1481,28 +1587,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", - "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", - "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1512,12 +1603,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", - "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz", + "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1527,14 +1619,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", - "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz", + "integrity": "sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-create-class-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1544,11 +1636,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", - "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1558,11 +1651,12 @@ } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.7.tgz", - "integrity": "sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz", + "integrity": "sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1572,15 +1666,16 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.2.tgz", - "integrity": "sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz", + "integrity": "sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/plugin-syntax-jsx": "^7.24.7", - "@babel/types": "^7.25.2" + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1590,11 +1685,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", - "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1604,11 +1700,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", - "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1618,12 +1715,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", - "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz", + "integrity": "sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "regenerator-transform": "^0.15.2" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1632,12 +1729,29 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz", + "integrity": "sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", - "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1647,15 +1761,16 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", - "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", - "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.1", - "babel-plugin-polyfill-regenerator": "^0.6.1", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.5.tgz", + "integrity": "sha512-20NUVgOrinudkIBzQ2bNxP08YpKprUkRTiRSd2/Z5GOdPImJGkoN4Z7IQe1T5AdyKI1i5L6RBmluqdSzvaq9/w==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", "semver": "^6.3.1" }, "engines": { @@ -1666,11 +1781,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", - "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1680,12 +1796,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", - "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz", + "integrity": "sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1695,11 +1812,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", - "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1709,11 +1827,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", - "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1723,11 +1842,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", - "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.8" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1737,15 +1857,16 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", - "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz", + "integrity": "sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.25.0", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-typescript": "^7.24.7" + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1755,11 +1876,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", - "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1769,12 +1891,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", - "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz", + "integrity": "sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1784,12 +1907,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", - "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1799,12 +1923,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", - "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz", + "integrity": "sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1814,92 +1939,80 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.25.3.tgz", - "integrity": "sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==", - "dependencies": { - "@babel/compat-data": "^7.25.2", - "@babel/helper-compilation-targets": "^7.25.2", - "@babel/helper-plugin-utils": "^7.24.8", - "@babel/helper-validator-option": "^7.24.8", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.3", - "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.0", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.0", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.0", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.5.tgz", + "integrity": "sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.3", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.7", - "@babel/plugin-syntax-import-attributes": "^7.24.7", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-syntax-import-attributes": "^7.27.1", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.7", - "@babel/plugin-transform-async-generator-functions": "^7.25.0", - "@babel/plugin-transform-async-to-generator": "^7.24.7", - "@babel/plugin-transform-block-scoped-functions": "^7.24.7", - "@babel/plugin-transform-block-scoping": "^7.25.0", - "@babel/plugin-transform-class-properties": "^7.24.7", - "@babel/plugin-transform-class-static-block": "^7.24.7", - "@babel/plugin-transform-classes": "^7.25.0", - "@babel/plugin-transform-computed-properties": "^7.24.7", - "@babel/plugin-transform-destructuring": "^7.24.8", - "@babel/plugin-transform-dotall-regex": "^7.24.7", - "@babel/plugin-transform-duplicate-keys": "^7.24.7", - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.0", - "@babel/plugin-transform-dynamic-import": "^7.24.7", - "@babel/plugin-transform-exponentiation-operator": "^7.24.7", - "@babel/plugin-transform-export-namespace-from": "^7.24.7", - "@babel/plugin-transform-for-of": "^7.24.7", - "@babel/plugin-transform-function-name": "^7.25.1", - "@babel/plugin-transform-json-strings": "^7.24.7", - "@babel/plugin-transform-literals": "^7.25.2", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", - "@babel/plugin-transform-member-expression-literals": "^7.24.7", - "@babel/plugin-transform-modules-amd": "^7.24.7", - "@babel/plugin-transform-modules-commonjs": "^7.24.8", - "@babel/plugin-transform-modules-systemjs": "^7.25.0", - "@babel/plugin-transform-modules-umd": "^7.24.7", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", - "@babel/plugin-transform-new-target": "^7.24.7", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", - "@babel/plugin-transform-numeric-separator": "^7.24.7", - "@babel/plugin-transform-object-rest-spread": "^7.24.7", - "@babel/plugin-transform-object-super": "^7.24.7", - "@babel/plugin-transform-optional-catch-binding": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.8", - "@babel/plugin-transform-parameters": "^7.24.7", - "@babel/plugin-transform-private-methods": "^7.24.7", - "@babel/plugin-transform-private-property-in-object": "^7.24.7", - "@babel/plugin-transform-property-literals": "^7.24.7", - "@babel/plugin-transform-regenerator": "^7.24.7", - "@babel/plugin-transform-reserved-words": "^7.24.7", - "@babel/plugin-transform-shorthand-properties": "^7.24.7", - "@babel/plugin-transform-spread": "^7.24.7", - "@babel/plugin-transform-sticky-regex": "^7.24.7", - "@babel/plugin-transform-template-literals": "^7.24.7", - "@babel/plugin-transform-typeof-symbol": "^7.24.8", - "@babel/plugin-transform-unicode-escapes": "^7.24.7", - "@babel/plugin-transform-unicode-property-regex": "^7.24.7", - "@babel/plugin-transform-unicode-regex": "^7.24.7", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.28.0", + "@babel/plugin-transform-async-to-generator": "^7.27.1", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.5", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-transform-class-static-block": "^7.28.3", + "@babel/plugin-transform-classes": "^7.28.4", + "@babel/plugin-transform-computed-properties": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-dotall-regex": "^7.27.1", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.0", + "@babel/plugin-transform-exponentiation-operator": "^7.28.5", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.27.1", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.28.5", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-modules-systemjs": "^7.28.5", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.28.4", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.28.5", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.27.1", + "@babel/plugin-transform-private-property-in-object": "^7.27.1", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.28.4", + "@babel/plugin-transform-regexp-modifiers": "^7.27.1", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.27.1", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.27.1", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.37.1", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "core-js-compat": "^3.43.0", "semver": "^6.3.1" }, "engines": { @@ -1910,13 +2023,14 @@ } }, "node_modules/@babel/preset-flow": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.7.tgz", - "integrity": "sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.27.1.tgz", + "integrity": "sha512-ez3a2it5Fn6P54W8QkbfIyyIbxlXvcxyWHHvno1Wg0Ej5eiJY5hBb8ExttoIOJJk7V2dZE6prP7iby5q2aQ0Lg==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-transform-flow-strip-types": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-transform-flow-strip-types": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1929,6 +2043,7 @@ "version": "0.1.6-no-external-plugins", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", @@ -1939,15 +2054,16 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", - "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz", + "integrity": "sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "@babel/plugin-syntax-jsx": "^7.24.7", - "@babel/plugin-transform-modules-commonjs": "^7.24.7", - "@babel/plugin-transform-typescript": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-typescript": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -1957,9 +2073,10 @@ } }, "node_modules/@babel/register": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz", - "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.28.3.tgz", + "integrity": "sha512-CieDOtd8u208eI49bYl4z1J22ySFw87IGwE+IswFEExH7e3rLgKb0WNQeumnacQ1+VoDJLYI5QFA3AJZuyZQfA==", + "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", @@ -1978,6 +2095,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", "dependencies": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -1990,6 +2108,7 @@ "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", "bin": { "semver": "bin/semver" } @@ -1998,65 +2117,80 @@ "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - }, "node_modules/@babel/runtime": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", - "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", - "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.25.0", - "@babel/types": "^7.25.0" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", - "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.0", - "@babel/parser": "^7.25.3", - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.2", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse--for-generate-function-map": { + "name": "@babel/traverse", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", - "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.24.8", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -2066,12 +2200,14 @@ "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@egjs/hammerjs": { "version": "2.0.17", "resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz", "integrity": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==", + "license": "MIT", "dependencies": { "@types/hammerjs": "^2.0.36" }, @@ -2080,16 +2216,20 @@ } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", "dev": true, + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } @@ -2099,6 +2239,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -2107,10 +2248,11 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", - "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", "dev": true, + "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } @@ -2120,6 +2262,7 @@ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -2142,28 +2285,15 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "Python-2.0" }, "node_modules/@eslint/eslintrc/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -2171,23 +2301,12 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "dev": true, + "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } @@ -2195,24 +2314,29 @@ "node_modules/@hapi/hoek": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", - "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "devOptional": true, + "license": "BSD-3-Clause" }, "node_modules/@hapi/topo": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "devOptional": true, + "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", "deprecated": "Use @eslint/config-array instead", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", + "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" }, @@ -2225,6 +2349,7 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -2238,13 +2363,23 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "deprecated": "Use @eslint/object-schema instead", - "dev": true + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@isaacs/ttlcache": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", + "license": "ISC", + "engines": { + "node": ">=12" + } }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, + "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", @@ -2260,7 +2395,7 @@ "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -2270,6 +2405,7 @@ "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", @@ -2282,81 +2418,12 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/console/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/core": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, + "license": "MIT", "dependencies": { "@jest/console": "^29.7.0", "@jest/reporters": "^29.7.0", @@ -2399,91 +2466,23 @@ } } }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, + "node_modules/@jest/create-cache-key-function": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", + "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@jest/types": "^29.6.3" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/core/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/create-cache-key-function": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", - "integrity": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==", - "dependencies": { - "@jest/types": "^29.6.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/environment": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "license": "MIT", "dependencies": { "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", @@ -2499,6 +2498,7 @@ "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, + "license": "MIT", "dependencies": { "expect": "^29.7.0", "jest-snapshot": "^29.7.0" @@ -2512,6 +2512,7 @@ "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, + "license": "MIT", "dependencies": { "jest-get-type": "^29.6.3" }, @@ -2523,6 +2524,7 @@ "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", @@ -2540,6 +2542,7 @@ "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/environment": "^29.7.0", "@jest/expect": "^29.7.0", @@ -2555,6 +2558,7 @@ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, + "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^29.7.0", @@ -2593,90 +2597,12 @@ } } }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/reporters/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@jest/reporters/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.23.9", "@babel/parser": "^7.23.9", @@ -2689,10 +2615,11 @@ } }, "node_modules/@jest/reporters/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -2700,22 +2627,11 @@ "node": ">=10" } }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/schemas": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.27.8" }, @@ -2728,6 +2644,7 @@ "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", @@ -2742,6 +2659,7 @@ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, + "license": "MIT", "dependencies": { "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", @@ -2757,6 +2675,7 @@ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", @@ -2771,7 +2690,7 @@ "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", - "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^29.6.3", @@ -2793,80 +2712,11 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/transform/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/types": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -2879,117 +2729,56 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@jest/types/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" + "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", + "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -3000,6 +2789,7 @@ "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "dev": true, + "license": "MIT", "dependencies": { "eslint-scope": "5.1.1" } @@ -3008,7 +2798,8 @@ "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, + "devOptional": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -3021,7 +2812,8 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, + "devOptional": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -3030,7 +2822,8 @@ "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, + "devOptional": true, + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -3040,1742 +2833,914 @@ } }, "node_modules/@react-native-async-storage/async-storage": { - "version": "1.17.11", - "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.17.11.tgz", - "integrity": "sha512-bzs45n5HNcDq6mxXnSsOHysZWn1SbbebNxldBXCQs8dSvF8Aor9KCdpm+TpnnGweK3R6diqsT8lFhX77VX0NFw==", + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.24.0.tgz", + "integrity": "sha512-W4/vbwUOYOjco0x3toB8QCr7EjIP6nE9G7o8PMguvvjYT5Awg09lyV4enACRx4s++PPulBiBSjL0KTFx2u0Z/g==", + "license": "MIT", "dependencies": { "merge-options": "^3.0.4" }, "peerDependencies": { - "react-native": "^0.0.0-0 || 0.60 - 0.71 || 1000.0.0" + "react-native": "^0.0.0-0 || >=0.60 <1.0" } }, "node_modules/@react-native-community/blur": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@react-native-community/blur/-/blur-4.4.0.tgz", - "integrity": "sha512-P+xdT2LIq1ewOsF3zx7C0nu4dj7nxl2NVTsMXEzRDjM3bWMdrrEbTRA7uwPV5ngn7/BXIommBPlT/JW4SAedrw==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@react-native-community/blur/-/blur-4.4.1.tgz", + "integrity": "sha512-XBSsRiYxE/MOEln2ayunShfJtWztHwUxLFcSL20o+HNNRnuUDv+GXkF6FmM2zE8ZUfrnhQ/zeTqvnuDPGw6O8A==", + "license": "MIT", "peerDependencies": { "react": "*", "react-native": "*" } }, "node_modules/@react-native-community/cli": { - "version": "10.2.7", - "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-10.2.7.tgz", - "integrity": "sha512-31GrAP5PjHosXV5bkHWVnYGjAeka2gkTTsPqasJAki5RI1njB1a2WAkYFV0sn+gqc4RU1s96RELBBfT+EGzhAQ==", - "dependencies": { - "@react-native-community/cli-clean": "^10.1.1", - "@react-native-community/cli-config": "^10.1.1", - "@react-native-community/cli-debugger-ui": "^10.0.0", - "@react-native-community/cli-doctor": "^10.2.7", - "@react-native-community/cli-hermes": "^10.2.7", - "@react-native-community/cli-plugin-metro": "^10.2.3", - "@react-native-community/cli-server-api": "^10.1.1", - "@react-native-community/cli-tools": "^10.1.1", - "@react-native-community/cli-types": "^10.0.0", + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-15.1.3.tgz", + "integrity": "sha512-+ih/WYUkJsEV2CMAnOHvVoSIz/Ahg5UJk+sqSIOmY79mWAglQzfLP71o7b0neJCnJWLmWiO6G6/S+kmULefD5g==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@react-native-community/cli-clean": "15.1.3", + "@react-native-community/cli-config": "15.1.3", + "@react-native-community/cli-debugger-ui": "15.1.3", + "@react-native-community/cli-doctor": "15.1.3", + "@react-native-community/cli-server-api": "15.1.3", + "@react-native-community/cli-tools": "15.1.3", + "@react-native-community/cli-types": "15.1.3", "chalk": "^4.1.2", "commander": "^9.4.1", - "execa": "^1.0.0", - "find-up": "^4.1.0", + "deepmerge": "^4.3.0", + "execa": "^5.0.0", + "find-up": "^5.0.0", "fs-extra": "^8.1.0", "graceful-fs": "^4.1.3", - "prompts": "^2.4.0", - "semver": "^6.3.0" + "prompts": "^2.4.2", + "semver": "^7.5.2" }, "bin": { - "react-native": "build/bin.js" + "rnc-cli": "build/bin.js" }, "engines": { - "node": ">=14" + "node": ">=18" } }, "node_modules/@react-native-community/cli-clean": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-10.1.1.tgz", - "integrity": "sha512-iNsrjzjIRv9yb5y309SWJ8NDHdwYtnCpmxZouQDyOljUdC9MwdZ4ChbtA4rwQyAwgOVfS9F/j56ML3Cslmvrxg==", + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-15.1.3.tgz", + "integrity": "sha512-3s9NGapIkONFoCUN2s77NYI987GPSCdr74rTf0TWyGIDf4vTYgKoWKKR+Ml3VTa1BCj51r4cYuHEKE1pjUSc0w==", + "devOptional": true, + "license": "MIT", "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", + "@react-native-community/cli-tools": "15.1.3", "chalk": "^4.1.2", - "execa": "^1.0.0", - "prompts": "^2.4.0" + "execa": "^5.0.0", + "fast-glob": "^3.3.2" } }, - "node_modules/@react-native-community/cli-clean/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@react-native-community/cli-config": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-15.1.3.tgz", + "integrity": "sha512-fJ9MrWp+/SszEVg5Wja8A57Whl5EfjRCHWFNkvFBtfjVUfi2hWvSTW3VBxzJuCHnPIIwpQafwjEgOrIRUI8y6w==", + "devOptional": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "@react-native-community/cli-tools": "15.1.3", + "chalk": "^4.1.2", + "cosmiconfig": "^9.0.0", + "deepmerge": "^4.3.0", + "fast-glob": "^3.3.2", + "joi": "^17.2.1" } }, - "node_modules/@react-native-community/cli-clean/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@react-native-community/cli-config-android": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config-android/-/cli-config-android-15.1.3.tgz", + "integrity": "sha512-v9okV/WQfMJEWRddI0S6no2v9Lvk54KgFkw1mvMYhJKVqloCNsIWzoqme0u7zIuYSzwsjXUQXVlGiDzbbwdkBw==", + "devOptional": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "@react-native-community/cli-tools": "15.1.3", + "chalk": "^4.1.2", + "fast-glob": "^3.3.2", + "fast-xml-parser": "^4.4.1" } }, - "node_modules/@react-native-community/cli-clean/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@react-native-community/cli-config-apple": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config-apple/-/cli-config-apple-15.1.3.tgz", + "integrity": "sha512-Qv6jaEaycv+7s8wR9l9bdpIeSNFCeVANfGCX1x76SgOmGfZNIa7J3l1HaeF/5ktERMYsw/hm4u3rUn4Ks0YV1g==", + "devOptional": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "@react-native-community/cli-tools": "15.1.3", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-glob": "^3.3.2" } }, - "node_modules/@react-native-community/cli-clean/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-clean/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/@react-native-community/cli-config/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "devOptional": true, + "license": "Python-2.0" + }, + "node_modules/@react-native-community/cli-config/node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "devOptional": true, + "license": "MIT", "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" }, "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "node": ">=14" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@react-native-community/cli-clean/node_modules/get-stream": { + "node_modules/@react-native-community/cli-config/node_modules/js-yaml": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "devOptional": true, + "license": "MIT", "dependencies": { - "pump": "^3.0.0" + "argparse": "^2.0.1" }, - "engines": { - "node": ">=6" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@react-native-community/cli-clean/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@react-native-community/cli-config/node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "optional": true, + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, "engines": { - "node": ">=8" + "node": ">=14.17" } }, - "node_modules/@react-native-community/cli-clean/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" + "node_modules/@react-native-community/cli-debugger-ui": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-15.1.3.tgz", + "integrity": "sha512-m+fb9iAUNb9WiDdokCBLh0InJvollcgAM3gLjCT8DGTP6bH/jxtZ3DszzyIRqN9cMamItVrvDM0vkIg48xK7rQ==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "serve-static": "^1.13.1" } }, - "node_modules/@react-native-community/cli-clean/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "node_modules/@react-native-community/cli-doctor": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-15.1.3.tgz", + "integrity": "sha512-WC9rawobuITAtJjyZ68E1M0geRt+b9A2CGB354L/tQp+XMKobGGVI4Y0DsattK83Wdg59GPyldE8C0Wevfgm/A==", + "devOptional": true, + "license": "MIT", "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" + "@react-native-community/cli-config": "15.1.3", + "@react-native-community/cli-platform-android": "15.1.3", + "@react-native-community/cli-platform-apple": "15.1.3", + "@react-native-community/cli-platform-ios": "15.1.3", + "@react-native-community/cli-tools": "15.1.3", + "chalk": "^4.1.2", + "command-exists": "^1.2.8", + "deepmerge": "^4.3.0", + "envinfo": "^7.13.0", + "execa": "^5.0.0", + "node-stream-zip": "^1.9.1", + "ora": "^5.4.1", + "semver": "^7.5.2", + "strip-ansi": "^5.2.0", + "wcwidth": "^1.0.1", + "yaml": "^2.2.1" } }, - "node_modules/@react-native-community/cli-clean/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "devOptional": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/@react-native-community/cli-clean/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/@react-native-community/cli-doctor/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "devOptional": true, + "license": "ISC", "bin": { - "semver": "bin/semver" + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@react-native-community/cli-clean/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "devOptional": true, + "license": "MIT", "dependencies": { - "shebang-regex": "^1.0.0" + "ansi-regex": "^4.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/@react-native-community/cli-clean/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" + "node_modules/@react-native-community/cli-platform-android": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-15.1.3.tgz", + "integrity": "sha512-ZwrBK0UK4DRHoQm2v5m8+PlNHBK5gmibBU6rqNFLo4aZJ2Rufalbv3SF+DukgSyoI9/kI8UVrzSNj17e+HhN5A==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@react-native-community/cli-config-android": "15.1.3", + "@react-native-community/cli-tools": "15.1.3", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "logkitty": "^0.7.1" } }, - "node_modules/@react-native-community/cli-clean/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@react-native-community/cli-platform-apple": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-apple/-/cli-platform-apple-15.1.3.tgz", + "integrity": "sha512-awotqCGVcTdeRmTlE3wlsZgNxZUDGojUhPYOVMKejgdCzNM2bvzF8fqhETH2sc64Hbw/tQJg8pYeD4MZR0bHxw==", + "devOptional": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@react-native-community/cli-config-apple": "15.1.3", + "@react-native-community/cli-tools": "15.1.3", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-xml-parser": "^4.4.1" } }, - "node_modules/@react-native-community/cli-clean/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/@react-native-community/cli-platform-ios": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-15.1.3.tgz", + "integrity": "sha512-DxM8GYkqjrlGuuGiGjrcvUmKC2xv9zDzHbsc4+S160Nn0zbF2OH1DhMlnIuUeCmQnAO6QFMqU99O120iEzCAug==", + "devOptional": true, + "license": "MIT", "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "@react-native-community/cli-platform-apple": "15.1.3" } }, - "node_modules/@react-native-community/cli-config": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-10.1.1.tgz", - "integrity": "sha512-p4mHrjC+s/ayiNVG6T35GdEGdP6TuyBUg5plVGRJfTl8WT6LBfLYLk+fz/iETrEZ/YkhQIsQcEUQC47MqLNHog==", + "node_modules/@react-native-community/cli-server-api": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-15.1.3.tgz", + "integrity": "sha512-kXZ0evedluLt6flWQiI3JqwnW8rSBspOoQ7JVTQYiG5lDHAeL3Om9PjAyiQBg1EZRMjiWZDV7nDxhR+m+6NX5Q==", + "devOptional": true, + "license": "MIT", "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "cosmiconfig": "^5.1.0", - "deepmerge": "^3.2.0", - "glob": "^7.1.3", - "joi": "^17.2.1" + "@react-native-community/cli-debugger-ui": "15.1.3", + "@react-native-community/cli-tools": "15.1.3", + "compression": "^1.7.1", + "connect": "^3.6.5", + "errorhandler": "^1.5.1", + "nocache": "^3.0.1", + "pretty-format": "^26.6.2", + "serve-static": "^1.13.1", + "ws": "^6.2.3" } }, - "node_modules/@react-native-community/cli-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@react-native-community/cli-server-api/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "devOptional": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 10.14.2" } }, - "node_modules/@react-native-community/cli-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@react-native-community/cli-server-api/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "devOptional": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-config/node_modules/deepmerge": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz", - "integrity": "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==", - "engines": { - "node": ">=0.10.0" + "@types/yargs-parser": "*" } }, - "node_modules/@react-native-community/cli-config/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "node_modules/@react-native-community/cli-server-api/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "devOptional": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/@react-native-community/cli-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "node_modules/@react-native-community/cli-server-api/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "devOptional": true, + "license": "MIT" }, - "node_modules/@react-native-community/cli-debugger-ui": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-10.0.0.tgz", - "integrity": "sha512-8UKLcvpSNxnUTRy8CkCl27GGLqZunQ9ncGYhSrWyKrU9SWBJJGeZwi2k2KaoJi5FvF2+cD0t8z8cU6lsq2ZZmA==", + "node_modules/@react-native-community/cli-server-api/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "devOptional": true, + "license": "MIT", "dependencies": { - "serve-static": "^1.13.1" + "async-limiter": "~1.0.0" } }, - "node_modules/@react-native-community/cli-doctor": { - "version": "10.2.7", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-10.2.7.tgz", - "integrity": "sha512-MejE7m+63DxfKwFSvyZGfq+72jX0RSP9SdSmDbW0Bjz2NIEE3BsE8rNay+ByFbdSLsapRPvaZv2Jof+dK2Y/yg==", + "node_modules/@react-native-community/cli-tools": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-15.1.3.tgz", + "integrity": "sha512-2RzoUKR+Y03ijBeeSoCSQihyN6dxy3fbHjraO4MheZZUzt/Yd1VMEDd0R5aa6rtiRDoknbHt45RL2GMa8MSaEA==", + "devOptional": true, + "license": "MIT", "dependencies": { - "@react-native-community/cli-config": "^10.1.1", - "@react-native-community/cli-platform-ios": "^10.2.5", - "@react-native-community/cli-tools": "^10.1.1", + "appdirsjs": "^1.2.4", "chalk": "^4.1.2", - "command-exists": "^1.2.8", - "envinfo": "^7.7.2", - "execa": "^1.0.0", - "hermes-profile-transformer": "^0.0.6", - "node-stream-zip": "^1.9.1", + "execa": "^5.0.0", + "find-up": "^5.0.0", + "mime": "^2.4.1", + "open": "^6.2.0", "ora": "^5.4.1", - "prompts": "^2.4.0", - "semver": "^6.3.0", - "strip-ansi": "^5.2.0", - "sudo-prompt": "^9.0.0", - "wcwidth": "^1.0.1" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", - "engines": { - "node": ">=6" + "prompts": "^2.4.2", + "semver": "^7.5.2", + "shell-quote": "^1.7.3", + "sudo-prompt": "^9.0.0" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@react-native-community/cli-tools/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "devOptional": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@react-native-community/cli-tools/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@react-native-community/cli-tools/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "devOptional": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "p-locate": "^5.0.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" + "node_modules/@react-native-community/cli-tools/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "devOptional": true, + "license": "MIT", + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=7.0.0" + "node": ">=4.0.0" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-doctor/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/@react-native-community/cli-tools/node_modules/open": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", + "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "devOptional": true, + "license": "MIT", "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "is-wsl": "^1.1.0" }, "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" + "node": ">=8" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "node_modules/@react-native-community/cli-tools/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "devOptional": true, + "license": "MIT", "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" + "node_modules/@react-native-community/cli-tools/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "devOptional": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" + "node_modules/@react-native-community/cli-types": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-15.1.3.tgz", + "integrity": "sha512-0ZaM8LMsa7z7swBN+ObL2ysc6aA3AdS698Q6uEukym6RyX1uLbiofUdlvFSMpWSEL3D8f9OTymmL4RkCH8k6dw==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "joi": "^17.2.1" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "node_modules/@react-native-community/cli/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "devOptional": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": "^12.20.0 || >=14" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "node_modules/@react-native-community/cli/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "devOptional": true, + "license": "MIT", "dependencies": { - "path-key": "^2.0.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/@react-native-community/cli/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "devOptional": true, + "license": "MIT", "dependencies": { - "shebang-regex": "^1.0.0" + "p-locate": "^5.0.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "node_modules/@react-native-community/cli/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "devOptional": true, + "license": "MIT", "dependencies": { - "ansi-regex": "^4.1.0" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" + "node_modules/@react-native-community/cli/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "devOptional": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/@react-native-community/eslint-config": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@react-native-community/eslint-config/-/eslint-config-3.2.0.tgz", + "integrity": "sha512-ZjGvoeiBtCbd506hQqwjKmkWPgynGUoJspG8/MuV/EfKnkjCtBmeJvq2n+sWbWEvL9LWXDp2GJmPzmvU5RSvKQ==", + "dev": true, + "license": "MIT", "dependencies": { - "isexe": "^2.0.0" + "@babel/core": "^7.14.0", + "@babel/eslint-parser": "^7.18.2", + "@react-native-community/eslint-plugin": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.30.5", + "@typescript-eslint/parser": "^5.30.5", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-eslint-comments": "^3.2.0", + "eslint-plugin-ft-flow": "^2.0.1", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-native": "^4.0.0" }, - "bin": { - "which": "bin/which" + "peerDependencies": { + "eslint": ">=8", + "prettier": ">=2" } }, - "node_modules/@react-native-community/cli-hermes": { - "version": "10.2.7", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-10.2.7.tgz", - "integrity": "sha512-MULfkgeLx1fietx10pLFLmlfRh0dcfX/HABXB5Tm0BzQDXy7ofFIJ/UxH+IF55NwPKXl6aEpTbPwbgsyJxqPiA==", - "dependencies": { - "@react-native-community/cli-platform-android": "^10.2.0", - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "hermes-profile-transformer": "^0.0.6" - } + "node_modules/@react-native-community/eslint-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz", + "integrity": "sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==", + "dev": true, + "license": "MIT" }, - "node_modules/@react-native-community/cli-hermes/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node_modules/@react-native-masked-view/masked-view": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@react-native-masked-view/masked-view/-/masked-view-0.3.2.tgz", + "integrity": "sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ==", + "license": "MIT", + "peerDependencies": { + "react": ">=16", + "react-native": ">=0.57" } }, - "node_modules/@react-native-community/cli-hermes/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/@react-native/assets-registry": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.77.3.tgz", + "integrity": "sha512-kLocY1mlQjCdrX0y4eYQblub9NDdX+rkNii3F2rumri532ILjMAvkdpehf2PwQDj0X6PZYF1XFjszPw5uzq0Aw==", + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-hermes/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@react-native/babel-plugin-codegen": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.77.3.tgz", + "integrity": "sha512-UbjQY8vFCVD4Aw4uSRWslKa26l1uOZzYhhKzWWOrV36f2NnP9Siid2rPkLa+MIJk16G2UzDRtUrMhGuejxp9cQ==", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@babel/traverse": "^7.25.3", + "@react-native/codegen": "0.77.3" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-hermes/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-hermes/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-hermes/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@react-native/babel-preset": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.77.3.tgz", + "integrity": "sha512-Cy1RoL5/nh2S/suWgfTuhUwkERoDN/Q2O6dZd3lcNcBrjd5Y++sBJGyBnHd9pqlSmOy8RLLBJZ9dOylycBOqzQ==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@babel/core": "^7.25.2", + "@babel/plugin-proposal-export-default-from": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-default-from": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.25.4", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.25.0", + "@babel/plugin-transform-class-properties": "^7.25.4", + "@babel/plugin-transform-classes": "^7.25.4", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-flow-strip-types": "^7.25.2", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.25.1", + "@babel/plugin-transform-literals": "^7.25.2", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-react-display-name": "^7.24.7", + "@babel/plugin-transform-react-jsx": "^7.25.2", + "@babel/plugin-transform-react-jsx-self": "^7.24.7", + "@babel/plugin-transform-react-jsx-source": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-runtime": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.25.2", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/template": "^7.25.0", + "@react-native/babel-plugin-codegen": "0.77.3", + "babel-plugin-syntax-hermes-parser": "0.25.1", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" } }, - "node_modules/@react-native-community/cli-platform-android": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-10.2.0.tgz", - "integrity": "sha512-CBenYwGxwFdObZTn1lgxWtMGA5ms2G/ALQhkS+XTAD7KHDrCxFF9yT/fnAjFZKM6vX/1TqGI1RflruXih3kAhw==", + "node_modules/@react-native/babel-preset/node_modules/babel-plugin-syntax-hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.25.1.tgz", + "integrity": "sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==", + "license": "MIT", "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "glob": "^7.1.3", - "logkitty": "^0.7.1" + "hermes-parser": "0.25.1" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@react-native/codegen": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.77.3.tgz", + "integrity": "sha512-Q6ZJCE7h6Z3v3DiEZUnqzHbgwF3ZILN+ACTx6qu/x2X1cL96AatKwdX92e0+7J9RFg6gdoFYJgRrW8Q6VnWZsQ==", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@babel/parser": "^7.25.3", + "glob": "^7.1.1", + "hermes-parser": "0.25.1", + "invariant": "^2.2.4", + "jscodeshift": "^17.0.0", + "nullthrows": "^1.1.1", + "yargs": "^17.6.2" }, "engines": { - "node": ">=8" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "@babel/preset-env": "^7.1.6" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@react-native/community-cli-plugin": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.77.3.tgz", + "integrity": "sha512-8OKvow2jHojl1d3PW/84uTBPMnmxRyPtfhBL0sQxrWP5Kgooe5XALoWsoBIFk+aIFu/fV7Pv0AAd0cdLC0NtOg==", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@react-native/dev-middleware": "0.77.3", + "@react-native/metro-babel-transformer": "0.77.3", + "chalk": "^4.0.0", + "debug": "^2.2.0", + "invariant": "^2.2.4", + "metro": "^0.81.5", + "metro-config": "^0.81.5", + "metro-core": "^0.81.5", + "readline": "^1.3.0", + "semver": "^7.1.3" }, "engines": { - "node": ">=10" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "@react-native-community/cli": "*" + }, + "peerDependenciesMeta": { + "@react-native-community/cli": { + "optional": true + } } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@react-native/community-cli-plugin/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "ms": "2.0.0" + } + }, + "node_modules/@react-native/community-cli-plugin/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/community-cli-plugin/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=7.0.0" + "node": ">=10" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, + "node_modules/@react-native/debugger-frontend": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.77.3.tgz", + "integrity": "sha512-FTERmc43r/3IpTvUZTr9gVVTgOIrg1hrkN57POr/CiL8RbcY/nv6vfNM7/CXG5WF8ckHiLeWTcRHzJUl1+rFkw==", + "license": "BSD-3-Clause", "engines": { - "node": ">=4.8" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "node_modules/@react-native/dev-middleware": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.77.3.tgz", + "integrity": "sha512-tCylGMjibJAEl2r2nWX5L5CvK6XFLGbjhe7Su7OcxRGrynHin87rAmcaTeoTtbtsREFlFM0f4qxcmwCxmbZHJw==", + "license": "MIT", "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.77.3", + "chrome-launcher": "^0.15.2", + "chromium-edge-launcher": "^0.2.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "open": "^7.0.3", + "selfsigned": "^2.4.1", + "serve-static": "^1.16.2", + "ws": "^6.2.3" }, "engines": { - "node": ">=6" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" + "ms": "2.0.0" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "node_modules/@react-native/dev-middleware/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/@react-native/dev-middleware/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "async-limiter": "~1.0.0" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@react-native/gradle-plugin": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.77.3.tgz", + "integrity": "sha512-GRVNBDowaFub9j+WBLGI09bDbCq+f7ugaNRr6lmZnLx/xdmiKUj9YKyARt4zn8m65MRK2JGlJk0OqmQOvswpzQ==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "node_modules/@react-native/js-polyfills": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.77.3.tgz", + "integrity": "sha512-XqxnQRyKD11u5ZYG5LPnElThWYJf3HMosqqkJGB4nwx6nc6WKxj1sR9snptibExDMGioZ2OyvPWCF8tX+qggrw==", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "node_modules/@react-native/metro-babel-transformer": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.77.3.tgz", + "integrity": "sha512-eBX5ibF1ovuZGwo08UOhnnkZDnhl8DdrCulJ8V/LCnpC6CihhQyxtolO+BmzXjUFyGiH7ImoxX7+mpXI74NYGg==", + "license": "MIT", "dependencies": { - "path-key": "^2.0.0" + "@babel/core": "^7.25.2", + "@react-native/babel-preset": "0.77.3", + "hermes-parser": "0.25.1", + "nullthrows": "^1.1.1" }, "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/@react-native/metro-config": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/metro-config/-/metro-config-0.77.3.tgz", + "integrity": "sha512-KqjMH4mBpssGP3zEfrsr05o3CYBr573PP8YOHwOS3yOEGY8PFPzXWxGYmZ9b98sCjUvruZ6CbybLWt5bZ0wVnQ==", + "dev": true, + "license": "MIT", "dependencies": { - "shebang-regex": "^1.0.0" + "@react-native/js-polyfills": "0.77.3", + "@react-native/metro-babel-transformer": "0.77.3", + "metro-config": "^0.81.5", + "metro-runtime": "^0.81.5" }, "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@react-native-community/cli-platform-android/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/@react-native/normalize-colors": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.77.3.tgz", + "integrity": "sha512-9gHhvK0EKskgIN4JiwzQdxiKhLCgH2LpCp+v38ZxWQpXTMbTDDE4AJRqYgWp2v9WUFQB/S5+XqBDZDgn/MGq9A==", + "license": "MIT" }, - "node_modules/@react-native-community/cli-platform-android/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@react-native/virtualized-lists": { + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.77.3.tgz", + "integrity": "sha512-3B0TPbLp7ZMWTlsOf+MzcuKuqF2HZzqh94+tPvw1thF5PxPaO2yZjVxfjrQ9EtdhQisG4siwiXVHB9DD6VkU4A==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "invariant": "^2.2.4", + "nullthrows": "^1.1.1" }, "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-platform-ios": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-10.2.5.tgz", - "integrity": "sha512-hq+FZZuSBK9z82GLQfzdNDl8vbFx5UlwCLFCuTtNCROgBoapFtVZQKRP2QBftYNrQZ0dLAb01gkwxagHsQCFyg==", - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "fast-xml-parser": "^4.0.12", - "glob": "^7.1.3", - "ora": "^5.4.1" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-plugin-metro": { - "version": "10.2.3", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-10.2.3.tgz", - "integrity": "sha512-jHi2oDuTePmW4NEyVT8JEGNlIYcnFXCSV2ZMp4rnDrUk4TzzyvS3IMvDlESEmG8Kry8rvP0KSUx/hTpy37Sbkw==", - "dependencies": { - "@react-native-community/cli-server-api": "^10.1.1", - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "metro": "0.73.10", - "metro-config": "0.73.10", - "metro-core": "0.73.10", - "metro-react-native-babel-transformer": "0.73.10", - "metro-resolver": "0.73.10", - "metro-runtime": "0.73.10", - "readline": "^1.3.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-server-api": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-10.1.1.tgz", - "integrity": "sha512-NZDo/wh4zlm8as31UEBno2bui8+ufzsZV+KN7QjEJWEM0levzBtxaD+4je0OpfhRIIkhaRm2gl/vVf7OYAzg4g==", - "dependencies": { - "@react-native-community/cli-debugger-ui": "^10.0.0", - "@react-native-community/cli-tools": "^10.1.1", - "compression": "^1.7.1", - "connect": "^3.6.5", - "errorhandler": "^1.5.0", - "nocache": "^3.0.1", - "pretty-format": "^26.6.2", - "serve-static": "^1.13.1", - "ws": "^7.5.1" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/@types/yargs": { - "version": "15.0.19", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", - "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-server-api/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "dependencies": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/@react-native-community/cli-server-api/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@react-native-community/cli-tools": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-10.1.1.tgz", - "integrity": "sha512-+FlwOnZBV+ailEzXjcD8afY2ogFEBeHOw/8+XXzMgPaquU2Zly9B+8W089tnnohO3yfiQiZqkQlElP423MY74g==", - "dependencies": { - "appdirsjs": "^1.2.4", - "chalk": "^4.1.2", - "find-up": "^5.0.0", - "mime": "^2.4.1", - "node-fetch": "^2.6.0", - "open": "^6.2.0", - "ora": "^5.4.1", - "semver": "^6.3.0", - "shell-quote": "^1.7.3" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-tools/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-types": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-10.0.0.tgz", - "integrity": "sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==", - "dependencies": { - "joi": "^17.2.1" - } - }, - "node_modules/@react-native-community/cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli/node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/eslint-config": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@react-native-community/eslint-config/-/eslint-config-3.2.0.tgz", - "integrity": "sha512-ZjGvoeiBtCbd506hQqwjKmkWPgynGUoJspG8/MuV/EfKnkjCtBmeJvq2n+sWbWEvL9LWXDp2GJmPzmvU5RSvKQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.14.0", - "@babel/eslint-parser": "^7.18.2", - "@react-native-community/eslint-plugin": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^5.30.5", - "@typescript-eslint/parser": "^5.30.5", - "eslint-config-prettier": "^8.5.0", - "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-ft-flow": "^2.0.1", - "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-react": "^7.30.1", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-native": "^4.0.0" + "node": ">=18" }, "peerDependencies": { - "eslint": ">=8", - "prettier": ">=2" - } - }, - "node_modules/@react-native-community/eslint-plugin": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz", - "integrity": "sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==", - "dev": true - }, - "node_modules/@react-native-masked-view/masked-view": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/@react-native-masked-view/masked-view/-/masked-view-0.2.9.tgz", - "integrity": "sha512-Hs4vKBKj+15VxHZHFtMaFWSBxXoOE5Ea8saoigWhahp8Mepssm0ezU+2pTl7DK9z8Y9s5uOl/aPb4QmBZ3R3Zw==", - "peerDependencies": { - "react": ">=16", - "react-native": ">=0.57" + "@types/react": "^18.2.6", + "react": "*", + "react-native": "*" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@react-native/assets": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz", - "integrity": "sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==" - }, - "node_modules/@react-native/normalize-color": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-2.1.0.tgz", - "integrity": "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==" - }, - "node_modules/@react-native/polyfills": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@react-native/polyfills/-/polyfills-2.0.0.tgz", - "integrity": "sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==" - }, "node_modules/@react-navigation/core": { "version": "6.4.17", "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-6.4.17.tgz", "integrity": "sha512-Nd76EpomzChWAosGqWOYE3ItayhDzIEzzZsT7PfGcRFDgW5miHV2t4MZcq9YIK4tzxZjVVpYbIynOOQQd1e0Cg==", + "license": "MIT", "dependencies": { "@react-navigation/routers": "^6.1.9", "escape-string-regexp": "^4.0.0", @@ -4792,6 +3757,7 @@ "version": "1.3.31", "resolved": "https://registry.npmjs.org/@react-navigation/elements/-/elements-1.3.31.tgz", "integrity": "sha512-bUzP4Awlljx5RKEExw8WYtif8EuQni2glDaieYROKTnaxsu9kEIA515sXQgUDZU4Ob12VoL7+z70uO3qrlfXcQ==", + "license": "MIT", "peerDependencies": { "@react-navigation/native": "^6.0.0", "react": "*", @@ -4800,11 +3766,12 @@ } }, "node_modules/@react-navigation/native": { - "version": "6.1.7", - "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.7.tgz", - "integrity": "sha512-W6E3+AtTombMucCRo6q7vPmluq8hSjS+IxfazJ/SokOe7ChJX7eLvvralIsJkjFj3iWV1KgOSnHxa6hdiFasBw==", + "version": "6.1.18", + "resolved": "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.18.tgz", + "integrity": "sha512-mIT9MiL/vMm4eirLcmw2h6h/Nm5FICtnYSdohq4vTLA2FF/6PNhByM7s8ffqoVfE5L0uAa6Xda1B7oddolUiGg==", + "license": "MIT", "dependencies": { - "@react-navigation/core": "^6.4.9", + "@react-navigation/core": "^6.4.17", "escape-string-regexp": "^4.0.0", "fast-deep-equal": "^3.1.3", "nanoid": "^3.1.23" @@ -4815,11 +3782,12 @@ } }, "node_modules/@react-navigation/native-stack": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@react-navigation/native-stack/-/native-stack-6.5.0.tgz", - "integrity": "sha512-X2sV+AKkqEl7k0ltjN4lMBfx+FsynrnUWkCTGiROyMRo4yWElK1jY3XSTsj5Cpso2/MUHdf9v/AOw0EgU58FsA==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/@react-navigation/native-stack/-/native-stack-6.11.0.tgz", + "integrity": "sha512-U5EcUB9Q2NQspCFwYGGNJm0h6wBCOv7T30QjndmvlawLkNt7S7KWbpWyxS9XBHSIKF57RgWjfxuJNTgTstpXxw==", + "license": "MIT", "dependencies": { - "@react-navigation/elements": "^1.3.1", + "@react-navigation/elements": "^1.3.31", "warn-once": "^0.1.0" }, "peerDependencies": { @@ -4834,17 +3802,19 @@ "version": "6.1.9", "resolved": "https://registry.npmjs.org/@react-navigation/routers/-/routers-6.1.9.tgz", "integrity": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==", + "license": "MIT", "dependencies": { "nanoid": "^3.1.23" } }, "node_modules/@shopify/flash-list": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@shopify/flash-list/-/flash-list-1.7.1.tgz", - "integrity": "sha512-sUYl7h8ydJutufA26E42Hj7cLvaBTpkMIyNJiFrxUspkcANb6jnFiLt9rEwAuDjvGk/C0lHau+WyT6ZOxqVPwg==", + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@shopify/flash-list/-/flash-list-1.8.3.tgz", + "integrity": "sha512-vXuj6JyuMjONVOXjEhWFeaONPuWN/53Cl2LeyeM8TZ0JzUcNU+BE6iyga1/yyJeDf0K7YPgAE/PcUX2+DM1LiA==", + "license": "MIT", "dependencies": { - "recyclerlistview": "4.2.1", - "tslib": "2.6.3" + "recyclerlistview": "4.2.3", + "tslib": "2.8.1" }, "peerDependencies": { "@babel/runtime": "*", @@ -4856,6 +3826,8 @@ "version": "4.1.5", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "devOptional": true, + "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" } @@ -4863,22 +3835,28 @@ "node_modules/@sideway/formula": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", - "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "devOptional": true, + "license": "BSD-3-Clause" }, "node_modules/@sideway/pinpoint": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", - "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "devOptional": true, + "license": "BSD-3-Clause" }, "node_modules/@sinclair/typebox": { "version": "0.27.8", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "license": "MIT" }, "node_modules/@sinonjs/commons": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } @@ -4887,6 +3865,7 @@ "version": "10.3.0", "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.0" } @@ -4895,13 +3874,14 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/react-native/-/react-native-2.0.3.tgz", "integrity": "sha512-jE58snEKBd9DXfyR4+ssZmYJ/W2mOSnNrvljR0aLyQJL9JKX6vlWELHkRjb3HBbcM9Uy0hZGijXbqEAjOERW2A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", @@ -4911,10 +3891,10 @@ } }, "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } @@ -4923,53 +3903,59 @@ "version": "7.4.4", "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "dev": true, + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "license": "MIT", "dependencies": { - "@babel/types": "^7.20.7" + "@babel/types": "^7.28.2" } }, "node_modules/@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/hammerjs": { - "version": "2.0.45", - "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.45.tgz", - "integrity": "sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==" + "version": "2.0.46", + "resolved": "https://registry.npmjs.org/@types/hammerjs/-/hammerjs-2.0.46.tgz", + "integrity": "sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==", + "license": "MIT" }, "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", - "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.7.tgz", + "integrity": "sha512-PQTyIulDkIDro8P+IHbKCsw7U2xxBYflVzW/FgWdCAePD9xGSidgA76/GeJ6lBKoblyhf9pBY763gbrN+1dI8g==", + "license": "MIT", "dependencies": { - "@types/react": "*", "hoist-non-react-statics": "^3.3.0" + }, + "peerDependencies": { + "@types/react": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } @@ -4978,15 +3964,17 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { - "version": "29.5.12", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", - "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", + "version": "29.5.14", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", + "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", "dev": true, + "license": "MIT", "dependencies": { "expect": "^29.0.0", "pretty-format": "^29.0.0" @@ -4996,59 +3984,77 @@ "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/node": { - "version": "22.4.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.4.1.tgz", - "integrity": "sha512-1tbpb9325+gPnKK0dMm+/LMriX0vKxf6RnB0SZUqfyVkQ4fMgUSySqhxE/y8Jvs4NyF1yHzTfG9KlnkIODxPKg==", + "version": "24.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.9.1.tgz", + "integrity": "sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/node-forge": { + "version": "1.3.14", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.14.tgz", + "integrity": "sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==", + "license": "MIT", "dependencies": { - "undici-types": "~6.19.2" + "@types/node": "*" } }, "node_modules/@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "license": "MIT" }, "node_modules/@types/react": { - "version": "18.3.12", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz", - "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==", + "version": "18.3.26", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.26.tgz", + "integrity": "sha512-RFA/bURkcKzx/X9oumPG9Vp3D3JUgus/d0b67KB0t5S/raciymilkOa66olh78MUI92QLbEJevO7rvqU/kjwKA==", + "license": "MIT", "dependencies": { "@types/prop-types": "*", "csstype": "^3.0.2" } }, "node_modules/@types/react-test-renderer": { - "version": "18.3.0", - "resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-18.3.0.tgz", - "integrity": "sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/@types/react-test-renderer/-/react-test-renderer-18.3.1.tgz", + "integrity": "sha512-vAhnk0tG2eGa37lkU9+s5SoroCsRI08xnsWFiAXOuPH2jqzMbcXvKExXViPi1P5fIklDeCvXqyrdmipFaSkZrA==", "dev": true, + "license": "MIT", "dependencies": { - "@types/react": "*" + "@types/react": "^18" } }, "node_modules/@types/semver": { - "version": "7.5.8", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", - "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", - "dev": true + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==", + "dev": true, + "license": "MIT" }, "node_modules/@types/stack-utils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "license": "MIT" }, "node_modules/@types/use-sync-external-store": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", - "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" + "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==", + "license": "MIT" }, "node_modules/@types/yargs": { - "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", - "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.34.tgz", + "integrity": "sha512-KExbHVa92aJpw9WDQvzBaGVE2/Pz+pLZQloT2hjL8IqsZnV62rlPOYvNnLmf/L2dyllfVUOVBj64M0z/46eR2A==", + "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } @@ -5056,13 +4062,15 @@ "node_modules/@types/yargs-parser": { "version": "21.0.3", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.4.0", "@typescript-eslint/scope-manager": "5.62.0", @@ -5093,10 +4101,11 @@ } }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -5109,6 +4118,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/types": "5.62.0", @@ -5136,6 +4146,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "dev": true, + "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0" @@ -5153,6 +4164,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "dev": true, + "license": "MIT", "dependencies": { "@typescript-eslint/typescript-estree": "5.62.0", "@typescript-eslint/utils": "5.62.0", @@ -5180,6 +4192,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", "dev": true, + "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -5193,6 +4206,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0", @@ -5216,10 +4230,11 @@ } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -5232,6 +4247,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", @@ -5254,10 +4270,11 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -5270,6 +4287,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "dev": true, + "license": "MIT", "dependencies": { "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" @@ -5287,6 +4305,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -5295,15 +4314,24 @@ } }, "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/abort-controller": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", "dependencies": { "event-target-shim": "^5.0.0" }, @@ -5311,15 +4339,11 @@ "node": ">=6.5" } }, - "node_modules/absolute-path": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz", - "integrity": "sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==" - }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" @@ -5329,9 +4353,10 @@ } }, "node_modules/acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -5344,6 +4369,7 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } @@ -5353,6 +4379,7 @@ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -5367,13 +4394,15 @@ "node_modules/anser": { "version": "1.4.10", "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.10.tgz", - "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==" + "integrity": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==", + "license": "MIT" }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -5384,10 +4413,25 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/ansi-fragments": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz", "integrity": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==", + "devOptional": true, + "license": "MIT", "dependencies": { "colorette": "^1.0.7", "slice-ansi": "^2.0.0", @@ -5398,6 +4442,8 @@ "version": "4.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -5406,6 +4452,8 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "devOptional": true, + "license": "MIT", "dependencies": { "ansi-regex": "^4.1.0" }, @@ -5417,25 +4465,31 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -5447,24 +4501,28 @@ "node_modules/appdirsjs": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz", - "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==" + "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==", + "devOptional": true, + "license": "MIT" }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" }, "engines": { "node": ">= 0.4" @@ -5474,17 +4532,20 @@ } }, "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -5498,6 +4559,7 @@ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -5507,6 +4569,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -5523,15 +4586,16 @@ } }, "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -5541,15 +4605,16 @@ } }, "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -5563,6 +4628,7 @@ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -5575,19 +4641,19 @@ } }, "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", "dev": true, + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", + "call-bind": "^1.0.8", "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" }, "engines": { "node": ">= 0.4" @@ -5599,12 +4665,14 @@ "node_modules/asap": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "license": "MIT" }, "node_modules/ast-types": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", - "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "license": "MIT", "dependencies": { "tslib": "^2.0.1" }, @@ -5616,25 +4684,34 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=4" } }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, "node_modules/async-limiter": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "license": "MIT" }, "node_modules/available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, + "license": "MIT", "dependencies": { "possible-typed-array-names": "^1.0.0" }, @@ -5645,19 +4722,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/babel-core": { - "version": "7.0.0-bridge.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", - "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/babel-jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", - "dev": true, + "license": "MIT", "dependencies": { "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", @@ -5674,81 +4743,11 @@ "@babel/core": "^7.8.0" } }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/babel-jest/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -5764,7 +4763,7 @@ "version": "29.6.3", "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", - "dev": true, + "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", @@ -5780,6 +4779,7 @@ "resolved": "https://registry.npmjs.org/babel-plugin-module-resolver/-/babel-plugin-module-resolver-5.0.2.tgz", "integrity": "sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==", "dev": true, + "license": "MIT", "dependencies": { "find-babel-config": "^2.1.1", "glob": "^9.3.3", @@ -5788,13 +4788,59 @@ "resolve": "^1.22.8" } }, + "node_modules/babel-plugin-module-resolver/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/babel-plugin-module-resolver/node_modules/glob": { + "version": "9.3.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", + "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "minimatch": "^8.0.2", + "minipass": "^4.2.4", + "path-scurry": "^1.6.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/babel-plugin-module-resolver/node_modules/minimatch": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", + "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", + "@babel/compat-data": "^7.27.7", + "@babel/helper-define-polyfill-provider": "^0.6.5", "semver": "^6.3.1" }, "peerDependencies": { @@ -5802,38 +4848,71 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", - "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2", - "core-js-compat": "^3.38.0" + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" + "@babel/helper-define-polyfill-provider": "^0.6.5" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-plugin-syntax-trailing-function-commas": { - "version": "7.0.0-beta.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", - "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" + "node_modules/babel-plugin-syntax-hermes-parser": { + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.32.1.tgz", + "integrity": "sha512-HgErPZTghW76Rkq9uqn5ESeiD97FbqpZ1V170T1RG2RDp+7pJVQV2pQJs7y5YzN0/gcT6GM5ci9apRnIwuyPdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-parser": "0.32.1" + } + }, + "node_modules/babel-plugin-syntax-hermes-parser/node_modules/hermes-estree": { + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.32.1.tgz", + "integrity": "sha512-ne5hkuDxheNBAikDjqvCZCwihnz0vVu9YsBzAEO1puiyFR4F1+PAz/SiPHSsNTuOveCYGRMX8Xbx4LOubeC0Qg==", + "dev": true, + "license": "MIT" }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", - "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", + "node_modules/babel-plugin-syntax-hermes-parser/node_modules/hermes-parser": { + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.32.1.tgz", + "integrity": "sha512-175dz634X/W5AiwrpLdoMl/MOb17poLHyIqgyExlE8D9zQ1OPnoORnGMB5ltRKnpvQzBjMYvT2rN/sHeIfZW5Q==", "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.32.1" + } + }, + "node_modules/babel-plugin-transform-flow-enums": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", + "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", + "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", @@ -5852,51 +4931,14 @@ "@babel/plugin-syntax-top-level-await": "^7.14.5" }, "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-fbjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", - "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-syntax-class-properties": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-block-scoped-functions": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-for-of": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-member-expression-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-object-super": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-property-literals": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.0.0 || ^8.0.0-0" } }, "node_modules/babel-preset-jest": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", - "dev": true, + "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" @@ -5911,7 +4953,8 @@ "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", @@ -5930,12 +4973,24 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.20", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz", + "integrity": "sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } }, "node_modules/bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "devOptional": true, + "license": "MIT", "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", @@ -5943,9 +4998,10 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -5955,6 +5011,7 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", "dependencies": { "fill-range": "^7.1.1" }, @@ -5963,9 +5020,9 @@ } }, "node_modules/browserslist": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", - "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "version": "4.27.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz", + "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==", "funding": [ { "type": "opencollective", @@ -5980,11 +5037,13 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001646", - "electron-to-chromium": "^1.5.4", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" + "baseline-browser-mapping": "^2.8.19", + "caniuse-lite": "^1.0.30001751", + "electron-to-chromium": "^1.5.238", + "node-releases": "^2.0.26", + "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" @@ -5997,6 +5056,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" } @@ -6005,6 +5065,7 @@ "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "devOptional": true, "funding": [ { "type": "github", @@ -6019,6 +5080,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -6027,27 +5089,61 @@ "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" }, "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "dev": true, + "license": "MIT", "dependencies": { + "call-bind-apply-helpers": "^1.0.0", "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, "engines": { "node": ">= 0.4" @@ -6060,6 +5156,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", "dependencies": { "callsites": "^2.0.0" }, @@ -6071,6 +5168,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "license": "MIT", "engines": { "node": ">=4" } @@ -6079,6 +5177,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "license": "MIT", "dependencies": { "caller-callsite": "^2.0.0" }, @@ -6090,7 +5189,8 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, + "devOptional": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -6099,14 +5199,15 @@ "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/caniuse-lite": { - "version": "1.0.30001651", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz", - "integrity": "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==", + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", "funding": [ { "type": "opencollective", @@ -6120,27 +5221,23 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/char-regex": { @@ -6148,10 +5245,43 @@ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" } }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/chromium-edge-launcher": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-0.2.0.tgz", + "integrity": "sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==", + "license": "Apache-2.0", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0", + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, "node_modules/ci-info": { "version": "3.9.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", @@ -6162,20 +5292,24 @@ "url": "https://github.com/sponsors/sibiraj-s" } ], + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/cjs-module-lexer": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", - "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==", - "dev": true + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", + "dev": true, + "license": "MIT" }, "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "devOptional": true, + "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" }, @@ -6187,6 +5321,8 @@ "version": "2.9.2", "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=6" }, @@ -6198,6 +5334,7 @@ "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", @@ -6211,6 +5348,8 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=0.8" } @@ -6219,6 +5358,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", @@ -6233,57 +5373,72 @@ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, + "license": "MIT", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" } }, "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", + "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==", + "dev": true, + "license": "MIT" }, "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" }, "node_modules/colorette": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "devOptional": true, + "license": "MIT" }, "node_modules/command-exists": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" + "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", + "devOptional": true, + "license": "MIT" }, "node_modules/commander": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", - "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", + "license": "MIT", "engines": { - "node": "^12.20.0 || >=14" + "node": ">=18" } }, "node_modules/commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "license": "MIT" }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "devOptional": true, + "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" }, @@ -6292,16 +5447,18 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", + "devOptional": true, + "license": "MIT", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { @@ -6312,6 +5469,8 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "devOptional": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -6319,17 +5478,31 @@ "node_modules/compression/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" }, "node_modules/connect": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "license": "MIT", "dependencies": { "debug": "2.6.9", "finalhandler": "1.1.2", @@ -6344,6 +5517,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -6351,34 +5525,33 @@ "node_modules/connect/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, "node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" }, "node_modules/core-js-compat": { - "version": "3.38.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.0.tgz", - "integrity": "sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==", + "version": "3.46.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.46.0.tgz", + "integrity": "sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==", + "license": "MIT", "dependencies": { - "browserslist": "^4.23.3" + "browserslist": "^4.26.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cosmiconfig": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", "dependencies": { "import-fresh": "^2.0.0", "is-directory": "^0.3.1", @@ -6393,6 +5566,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", "dependencies": { "caller-path": "^2.0.0", "resolve-from": "^3.0.0" @@ -6405,6 +5579,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" @@ -6417,6 +5592,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", "engines": { "node": ">=4" } @@ -6426,97 +5602,29 @@ "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", "dev": true, + "license": "MIT", "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "prompts": "^2.0.1" - }, - "bin": { - "create-jest": "bin/create-jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/create-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/create-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/create-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/create-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/create-jest/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/create-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "devOptional": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -6529,17 +5637,19 @@ "node_modules/csstype": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" }, "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -6549,29 +5659,31 @@ } }, "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/inspect-js" } }, "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bound": "^1.0.2", "es-errors": "^1.3.0", "is-data-view": "^1.0.1" }, @@ -6583,16 +5695,19 @@ } }, "node_modules/dayjs": { - "version": "1.11.12", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.12.tgz", - "integrity": "sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==" + "version": "1.11.18", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.18.tgz", + "integrity": "sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==", + "devOptional": true, + "license": "MIT" }, "node_modules/debug": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", - "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -6607,6 +5722,8 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6615,15 +5732,17 @@ "version": "0.2.2", "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/dedent": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", - "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.0.tgz", + "integrity": "sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==", "dev": true, + "license": "MIT", "peerDependencies": { "babel-plugin-macros": "^3.1.0" }, @@ -6637,13 +5756,15 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/deepmerge": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, + "devOptional": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -6652,6 +5773,8 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "devOptional": true, + "license": "MIT", "dependencies": { "clone": "^1.0.2" }, @@ -6664,6 +5787,7 @@ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, + "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -6681,6 +5805,7 @@ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", @@ -6693,33 +5818,20 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/denodeify": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz", - "integrity": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==" - }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/deprecated-react-native-prop-types": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-3.0.2.tgz", - "integrity": "sha512-JoZY5iNM+oJlN2Ldpq0KSi0h3Nig4hlNJj5nWzWp8eL3uikMCvHwjSGPitwkEw0arL5JFra5nuGJQpXRbEjApg==", - "dependencies": { - "@react-native/normalize-color": "^2.1.0", - "invariant": "^2.2.4", - "prop-types": "^15.8.1" - } - }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -6730,6 +5842,7 @@ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -6739,6 +5852,7 @@ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -6748,6 +5862,7 @@ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, + "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -6760,6 +5875,7 @@ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -6767,21 +5883,39 @@ "node": ">=6.0.0" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.11", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.11.tgz", - "integrity": "sha512-R1CccCDYqndR25CaXFd6hp/u9RaaMcftMkphmvuepXr5b1vfLkRml6aWVeBhXJ7rbevHkKEMJtz8XqPf7ffmew==" + "version": "1.5.240", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.240.tgz", + "integrity": "sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==", + "license": "ISC" }, "node_modules/emittery": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -6792,28 +5926,34 @@ "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" } }, "node_modules/envinfo": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", - "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.19.0.tgz", + "integrity": "sha512-DoSM9VyG6O3vqBf+p3Gjgr/Q52HYBBtO3v+4koAxt1MnWr+zEnxE+nke/yXS4lt2P4SYCHQ4V3f1i88LQVOpAw==", + "devOptional": true, + "license": "MIT", "bin": { "envinfo": "dist/cli.js" }, @@ -6822,9 +5962,10 @@ } }, "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", + "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } @@ -6833,6 +5974,7 @@ "version": "2.1.4", "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", "dependencies": { "stackframe": "^1.3.4" } @@ -6841,6 +5983,8 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz", "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==", + "devOptional": true, + "license": "MIT", "dependencies": { "accepts": "~1.3.7", "escape-html": "~1.0.3" @@ -6850,57 +5994,66 @@ } }, "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", "dev": true, + "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", + "is-data-view": "^1.0.2", "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" }, "engines": { "node": ">= 0.4" @@ -6910,13 +6063,11 @@ } }, "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4" - }, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -6926,40 +6077,45 @@ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-iterator-helpers": { - "version": "1.0.19", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.19.tgz", - "integrity": "sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", + "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", + "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-set-tostringtag": "^2.0.3", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", + "get-intrinsic": "^1.2.6", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.2" + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.4", + "safe-array-concat": "^1.1.3" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dev": true, + "license": "MIT", "dependencies": { "es-errors": "^1.3.0" }, @@ -6968,37 +6124,44 @@ } }, "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dev": true, + "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.4", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", "dev": true, + "license": "MIT", "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", "dev": true, + "license": "MIT", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" }, "engines": { "node": ">= 0.4" @@ -7008,9 +6171,10 @@ } }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -7018,12 +6182,14 @@ "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -7032,16 +6198,18 @@ } }, "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", @@ -7087,10 +6255,11 @@ } }, "node_modules/eslint-config-prettier": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", - "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "version": "8.10.2", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.2.tgz", + "integrity": "sha512-/IGJ6+Dka158JnP5n5YFMOszjDWrXggGz1LaK/guZq9vZTmniaKlHcsscvkAhn9y4U+BU3JuUdYvtAMcv30y4A==", "dev": true, + "license": "MIT", "bin": { "eslint-config-prettier": "bin/cli.js" }, @@ -7103,6 +6272,7 @@ "resolved": "https://registry.npmjs.org/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz", "integrity": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==", "dev": true, + "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5", "ignore": "^5.0.5" @@ -7122,6 +6292,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -7131,6 +6302,7 @@ "resolved": "https://registry.npmjs.org/eslint-plugin-ft-flow/-/eslint-plugin-ft-flow-2.0.3.tgz", "integrity": "sha512-Vbsd/b+LYA99jUbsL6viEUWShFaYQt2YQs3QN3f+aeszOhh2sgdcU0mjzDyD4yyBvMc8qy2uwvBBWfMzEX06tg==", "dev": true, + "license": "MIT", "dependencies": { "lodash": "^4.17.21", "string-natural-compare": "^3.0.1" @@ -7148,6 +6320,7 @@ "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.9.0.tgz", "integrity": "sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng==", "dev": true, + "license": "MIT", "dependencies": { "@typescript-eslint/utils": "^5.10.0" }, @@ -7168,10 +6341,11 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.5.tgz", + "integrity": "sha512-9Ni+xgemM2IWLq6aXEpP2+V/V30GeA/46Ar629vcMqVPodFFWC9skHu/D1phvuqtS8bJCFnNf01/qcmqYEwNfg==", "dev": true, + "license": "MIT", "dependencies": { "prettier-linter-helpers": "^1.0.0" }, @@ -7189,28 +6363,29 @@ } }, "node_modules/eslint-plugin-react": { - "version": "7.35.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.35.0.tgz", - "integrity": "sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==", + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", "dev": true, + "license": "MIT", "dependencies": { "array-includes": "^3.1.8", "array.prototype.findlast": "^1.2.5", - "array.prototype.flatmap": "^1.3.2", + "array.prototype.flatmap": "^1.3.3", "array.prototype.tosorted": "^1.1.4", "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.19", + "es-iterator-helpers": "^1.2.1", "estraverse": "^5.3.0", "hasown": "^2.0.2", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.8", + "object.entries": "^1.1.9", "object.fromentries": "^2.0.8", - "object.values": "^1.2.0", + "object.values": "^1.2.1", "prop-types": "^15.8.1", "resolve": "^2.0.0-next.5", "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.11", + "string.prototype.matchall": "^4.0.12", "string.prototype.repeat": "^1.0.0" }, "engines": { @@ -7225,6 +6400,7 @@ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -7237,6 +6413,7 @@ "resolved": "https://registry.npmjs.org/eslint-plugin-react-native/-/eslint-plugin-react-native-4.1.0.tgz", "integrity": "sha512-QLo7rzTBOl43FvVqDdq5Ql9IoElIuTdjrz9SKAXCvULvBoRZ44JGSkx9z4999ZusCsb4rK3gjS8gOGyeYqZv2Q==", "dev": true, + "license": "MIT", "dependencies": { "eslint-plugin-react-native-globals": "^0.1.1" }, @@ -7248,13 +6425,15 @@ "version": "0.1.2", "resolved": "https://registry.npmjs.org/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz", "integrity": "sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -7267,6 +6446,7 @@ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", "dev": true, + "license": "MIT", "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", @@ -7284,6 +6464,7 @@ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -7297,6 +6478,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -7306,70 +6488,24 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=10" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/eslint/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "license": "Python-2.0" }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -7386,6 +6522,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -7398,6 +6535,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -7409,35 +6547,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -7450,6 +6565,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -7465,6 +6581,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -7475,35 +6592,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", @@ -7521,6 +6615,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -7532,6 +6627,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -7545,6 +6641,7 @@ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -7557,6 +6654,7 @@ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -7569,6 +6667,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -7577,6 +6676,7 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } @@ -7585,6 +6685,7 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -7593,6 +6694,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", "engines": { "node": ">=6" } @@ -7601,7 +6703,8 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, + "devOptional": true, + "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -7634,6 +6737,7 @@ "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", @@ -7645,28 +6749,37 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/exponential-backoff": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz", + "integrity": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==", + "license": "Apache-2.0" + }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" }, "node_modules/fast-diff": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "devOptional": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" @@ -7676,7 +6789,8 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, + "devOptional": true, + "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -7688,40 +6802,40 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/fast-xml-parser": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", - "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz", + "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==", + "devOptional": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/NaturalIntelligence" - }, - { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" } ], + "license": "MIT", "dependencies": { - "strnum": "^1.0.5" + "strnum": "^1.1.1" }, "bin": { "fxparser": "src/cli/cli.js" } }, "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "devOptional": true, + "license": "ISC", "dependencies": { "reusify": "^1.0.4" } @@ -7730,6 +6844,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" } @@ -7739,6 +6854,7 @@ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, + "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, @@ -7750,6 +6866,7 @@ "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -7761,6 +6878,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -7769,6 +6887,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -7786,6 +6905,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -7793,22 +6913,24 @@ "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, "node_modules/find-babel-config": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/find-babel-config/-/find-babel-config-2.1.1.tgz", - "integrity": "sha512-5Ji+EAysHGe1OipH7GN4qDjok5Z1uw5KAwDCbicU/4wyTZY7CqOCzcWbG7J5ad9mazq67k89fXlbc1MuIfl9uA==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/find-babel-config/-/find-babel-config-2.1.2.tgz", + "integrity": "sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==", "dev": true, + "license": "MIT", "dependencies": { - "json5": "^2.2.3", - "path-exists": "^4.0.0" + "json5": "^2.2.3" } }, "node_modules/find-cache-dir": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", "dependencies": { "commondir": "^1.0.1", "make-dir": "^2.0.0", @@ -7822,6 +6944,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", "dependencies": { "locate-path": "^3.0.0" }, @@ -7833,6 +6956,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -7845,6 +6969,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", "dependencies": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -7857,6 +6982,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -7871,6 +6997,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", "dependencies": { "p-limit": "^2.0.0" }, @@ -7882,6 +7009,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", "engines": { "node": ">=4" } @@ -7890,6 +7018,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", "dependencies": { "find-up": "^3.0.0" }, @@ -7901,6 +7030,7 @@ "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "license": "ISC", "bin": { "semver": "bin/semver" } @@ -7909,6 +7039,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -7917,11 +7048,22 @@ "node": ">=8" } }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "micromatch": "^4.0.2" + } + }, "node_modules/flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, + "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.3", @@ -7932,32 +7074,48 @@ } }, "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/flow-enums-runtime": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==", + "license": "MIT" }, "node_modules/flow-parser": { - "version": "0.185.2", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.185.2.tgz", - "integrity": "sha512-2hJ5ACYeJCzNtiVULov6pljKOLygy0zddoqSI1fFetM+XRPpRshFdGEijtqlamA1XwyZ+7rhryI6FQFzvtLWUQ==", + "version": "0.289.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.289.0.tgz", + "integrity": "sha512-w4sVnH6ddNAIxokoz0mGyiIIdzvqncFhAYW+RmkPbPSSTYozG6yhqAixzaWeBCQf2qqXJTlHkoKPnf/BAj8Ofw==", + "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "dev": true, + "license": "MIT", "dependencies": { - "is-callable": "^1.1.3" + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -7966,6 +7124,8 @@ "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "devOptional": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", @@ -7978,13 +7138,15 @@ "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "hasInstallScript": true, + "license": "MIT", "optional": true, "os": [ "darwin" @@ -7997,277 +7159,25 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/glob": { - "version": "9.3.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", - "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "minimatch": "^8.0.2", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", - "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/globalthis": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", - "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", "dev": true, + "license": "MIT", "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "engines": { - "node": ">= 0.4" + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -8275,185 +7185,165 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dependencies": { - "function-bind": "^1.1.2" - }, + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } }, - "node_modules/hermes-estree": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.8.0.tgz", - "integrity": "sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==" - }, - "node_modules/hermes-parser": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.8.0.tgz", - "integrity": "sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==", - "dependencies": { - "hermes-estree": "0.8.0" - } - }, - "node_modules/hermes-profile-transformer": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/hermes-profile-transformer/-/hermes-profile-transformer-0.0.6.tgz", - "integrity": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==", - "dependencies": { - "source-map": "^0.7.3" - }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/hermes-profile-transformer/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", "engines": { - "node": ">= 8" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-errors/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=8.0.0" } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, "engines": { - "node": ">=10.17.0" + "node": ">= 0.4" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", - "dev": true, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "devOptional": true, + "license": "MIT", "engines": { - "node": ">= 4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/image-size": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.6.3.tgz", - "integrity": "sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==", - "bin": { - "image-size": "bin/image-size.js" + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=4.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "license": "ISC", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=6" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, "engines": { - "node": ">=4" + "node": ">=10.13.0" } }, - "node_modules/import-local": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", - "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, + "license": "MIT", "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "type-fest": "^0.20.2" }, "engines": { "node": ">=8" @@ -8462,60 +7352,50 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, + "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "define-properties": "^1.2.1", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", "dependencies": { - "loose-envify": "^1.0.0" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -8523,19 +7403,25 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "license": "MIT" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -8543,26 +7429,36 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, + "license": "MIT", "dependencies": { - "has-bigints": "^1.0.1" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "dunder-proto": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -8571,11 +7467,12 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -8583,12 +7480,14 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-core-module": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", - "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", "dependencies": { - "hasown": "^2.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -8597,227 +7496,237 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "dev": true, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", "dependencies": { - "is-typed-array": "^1.1.13" + "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "hermes-estree": "0.25.1" } }, - "node_modules/is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", - "engines": { - "node": ">=0.10.0" + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true, - "engines": { - "node": ">=0.10.0" - } + "license": "MIT" }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.8" } }, - "node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/is-generator-fn": { + "node_modules/human-signals": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true, + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "devOptional": true, + "license": "Apache-2.0", "engines": { - "node": ">=6" + "node": ">=10.17.0" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "devOptional": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "license": "MIT", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 4" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, + "node_modules/image-size": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.1.tgz", + "integrity": "sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==", + "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" + "queue": "6.0.2" + }, + "bin": { + "image-size": "bin/image-size.js" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "engines": { - "node": ">=8" + "node": ">=16.x" } }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "dev": true, - "engines": { - "node": ">= 0.4" + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "devOptional": true, + "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": ">=4" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.8.19" } }, - "node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "engines": { - "node": ">=8" + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/is-plain-object": { + "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" @@ -8826,25 +7735,24 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", "dev": true, + "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -8853,13 +7761,14 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dev": true, + "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "has-bigints": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -8868,13 +7777,15 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", "dev": true, + "license": "MIT", "dependencies": { - "which-typed-array": "^1.1.14" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -8883,22 +7794,27 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "dev": true, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, "engines": { "node": ">= 0.4" }, @@ -8906,26 +7822,33 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakref": { + "node_modules/is-data-view": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -8934,700 +7857,699 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" }, "engines": { "node": ">=8" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "devOptional": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "call-bound": "^1.0.3" }, "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" + "node": ">= 0.4" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", - "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", "dev": true, + "license": "MIT", "dependencies": { - "@jest/core": "^29.7.0", - "@jest/types": "^29.6.3", - "import-local": "^3.0.2", - "jest-cli": "^29.7.0" - }, - "bin": { - "jest": "bin/jest.js" + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-changed-files": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", - "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", - "dev": true, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "devOptional": true, + "license": "MIT", "dependencies": { - "execa": "^5.0.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-circus": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", - "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^1.0.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.7.0", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.7.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "devOptional": true, + "license": "MIT", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=8" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest-cli": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", - "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", - "dev": true, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", "dependencies": { - "@jest/core": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "create-jest": "^29.7.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" + "isobject": "^3.0.1" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "call-bound": "^1.0.3" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-config": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", - "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-jest": "^29.7.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, + "license": "MIT", "engines": { - "node": ">=7.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-config/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "call-bound": "^1.0.3" }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "is-docker": "^2.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "devOptional": true, + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "license": "BSD-3-Clause", "dependencies": { - "color-convert": "^2.0.1" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "ansi-styles": "^4.1.0", + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "color-name": "~1.1.4" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=10" } }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/istanbul-reports": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-docblock": { + "node_modules/jest-changed-files": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", - "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, + "license": "MIT", "dependencies": { - "detect-newline": "^3.0.0" + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-each": { + "node_modules/jest-circus": { "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", - "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, + "license": "MIT", "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", + "@types/node": "*", "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", "jest-util": "^29.7.0", - "pretty-format": "^29.7.0" + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=7.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-environment-node": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "license": "MIT", "dependencies": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", @@ -9644,7 +8566,7 @@ "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -9653,7 +8575,7 @@ "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", - "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", @@ -9662,120 +8584,53 @@ "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/jest-leak-detector": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", - "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", - "dev": true, - "dependencies": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": ">=7.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, + "license": "MIT", + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", @@ -9791,74 +8646,11 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-message-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-mock": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", @@ -9873,6 +8665,7 @@ "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" }, @@ -9889,7 +8682,7 @@ "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -9899,6 +8692,7 @@ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", @@ -9919,184 +8713,46 @@ "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, + "license": "MIT", "dependencies": { - "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-resolve/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", - "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", - "dev": true, - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/environment": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-leak-detector": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-resolve": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-util": "^29.7.0", - "jest-watcher": "^29.7.0", - "jest-worker": "^29.7.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runtime": { @@ -10104,6 +8760,7 @@ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", @@ -10132,114 +8789,12 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-runtime/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, "node_modules/jest-snapshot": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", @@ -10266,69 +8821,12 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -10336,103 +8834,28 @@ "node": ">=10" } }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "license": "MIT", "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-validate": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", - "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "camelcase": "^6.2.0", @@ -10445,26 +8868,11 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -10472,66 +8880,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-watcher": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, + "license": "MIT", "dependencies": { "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", @@ -10546,81 +8900,11 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-worker": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "jest-util": "^29.7.0", @@ -10628,265 +8912,205 @@ "supports-color": "^8.0.0" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/joi": { - "version": "17.13.3", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", - "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", - "dependencies": { - "@hapi/hoek": "^9.3.0", - "@hapi/topo": "^5.1.0", - "@sideway/address": "^4.1.5", - "@sideway/formula": "^3.0.1", - "@sideway/pinpoint": "^2.0.0" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsc-android": { - "version": "250231.0.0", - "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", - "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==" - }, - "node_modules/jsc-safe-url": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", - "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==" - }, - "node_modules/jscodeshift": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", - "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", - "dependencies": { - "@babel/core": "^7.13.16", - "@babel/parser": "^7.13.16", - "@babel/plugin-proposal-class-properties": "^7.13.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", - "@babel/plugin-proposal-optional-chaining": "^7.13.12", - "@babel/plugin-transform-modules-commonjs": "^7.13.8", - "@babel/preset-flow": "^7.13.13", - "@babel/preset-typescript": "^7.13.0", - "@babel/register": "^7.13.16", - "babel-core": "^7.0.0-bridge.0", - "chalk": "^4.1.2", - "flow-parser": "0.*", - "graceful-fs": "^4.2.4", - "micromatch": "^4.0.4", - "neo-async": "^2.5.0", - "node-dir": "^0.1.17", - "recast": "^0.21.0", - "temp": "^0.8.4", - "write-file-atomic": "^2.3.0" - }, - "bin": { - "jscodeshift": "bin/jscodeshift.js" - }, - "peerDependencies": { - "@babel/preset-env": "^7.1.6" - } - }, - "node_modules/jscodeshift/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jscodeshift/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jscodeshift/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jscodeshift/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "node_modules/jscodeshift/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "*" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/jscodeshift/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" + "node_modules/joi": { + "version": "17.13.3", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz", + "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==", + "devOptional": true, + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", + "@sideway/formula": "^3.0.1", + "@sideway/pinpoint": "^2.0.0" } }, - "node_modules/jscodeshift/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", "dependencies": { - "glob": "^7.1.3" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, "bin": { - "rimraf": "bin.js" + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jscodeshift/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jsc-android": { + "version": "250231.0.0", + "resolved": "https://registry.npmjs.org/jsc-android/-/jsc-android-250231.0.0.tgz", + "integrity": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==", + "license": "BSD-2-Clause" + }, + "node_modules/jsc-safe-url": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/jsc-safe-url/-/jsc-safe-url-0.2.4.tgz", + "integrity": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==", + "license": "0BSD" + }, + "node_modules/jscodeshift": { + "version": "17.3.0", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-17.3.0.tgz", + "integrity": "sha512-LjFrGOIORqXBU+jwfC9nbkjmQfFldtMIoS6d9z2LG/lkmyNXsJAySPT+2SWXJEoE68/bCWcxKpXH37npftgmow==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@babel/core": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/preset-flow": "^7.24.7", + "@babel/preset-typescript": "^7.24.7", + "@babel/register": "^7.24.6", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.7", + "neo-async": "^2.5.0", + "picocolors": "^1.0.1", + "recast": "^0.23.11", + "tmp": "^0.2.3", + "write-file-atomic": "^5.0.1" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" }, "engines": { - "node": ">=8" + "node": ">=16" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + }, + "peerDependenciesMeta": { + "@babel/preset-env": { + "optional": true + } } }, - "node_modules/jscodeshift/node_modules/temp": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", - "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", - "dependencies": { - "rimraf": "~2.6.2" - }, + "node_modules/jscodeshift/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", "engines": { - "node": ">=6.0.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/jscodeshift/node_modules/write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", + "license": "ISC", "dependencies": { - "graceful-fs": "^4.1.11", "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "license": "MIT" }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true + "devOptional": true, + "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.3.0.tgz", + "integrity": "sha512-qtYiSSFlwot9XHtF9bD9c7rwKjr+RecWT//ZnPvSmEjpV5mmPOCN4j8UjY5hbjNkOwZ/jQv3J6R1/pL7RwgMsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "license": "MIT", "bin": { "json5": "lib/cli.js" }, @@ -10898,15 +9122,28 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "devOptional": true, + "license": "MIT", "optionalDependencies": { "graceful-fs": "^4.1.6" } }, + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true, + "license": "Public Domain", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/jsx-ast-utils": { "version": "3.3.5", "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, + "license": "MIT", "dependencies": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", @@ -10922,6 +9159,7 @@ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, + "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } @@ -10930,14 +9168,27 @@ "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/klaw-sync": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz", + "integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.11" + } + }, "node_modules/kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -10946,6 +9197,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", "engines": { "node": ">=6" } @@ -10955,6 +9207,7 @@ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -10963,16 +9216,43 @@ "node": ">= 0.8.0" } }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "license": "Apache-2.0", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true + "devOptional": true, + "license": "MIT" }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -10983,28 +9263,35 @@ "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.throttle": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", + "license": "MIT" }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "devOptional": true, + "license": "MIT", "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" @@ -11016,74 +9303,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/logkitty": { "version": "0.7.1", "resolved": "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz", "integrity": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==", + "devOptional": true, + "license": "MIT", "dependencies": { "ansi-fragments": "^0.2.1", "dayjs": "^1.8.15", @@ -11093,50 +9318,24 @@ "logkitty": "bin/logkitty.js" } }, - "node_modules/logkitty/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/logkitty/node_modules/cliui": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "devOptional": true, + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^6.2.0" } }, - "node_modules/logkitty/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/logkitty/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/logkitty/node_modules/wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "devOptional": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -11149,12 +9348,16 @@ "node_modules/logkitty/node_modules/y18n": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "devOptional": true, + "license": "ISC" }, "node_modules/logkitty/node_modules/yargs": { "version": "15.4.1", "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "devOptional": true, + "license": "MIT", "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -11176,6 +9379,8 @@ "version": "18.1.3", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "devOptional": true, + "license": "ISC", "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" @@ -11188,6 +9393,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -11195,22 +9401,25 @@ "loose-envify": "cli.js" } }, + "node_modules/lottie-ios": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/lottie-ios/-/lottie-ios-3.2.3.tgz", + "integrity": "sha512-mubYMN6+1HXa8z3EJKBvNBkl4UoVM4McjESeB2PgvRMSngmJtC5yUMRdhbbrIAn5Liu3hFGao/14s5hQIgtkRQ==", + "license": "Apache-2.0" + }, "node_modules/lottie-react-native": { - "version": "6.7.2", - "resolved": "https://registry.npmjs.org/lottie-react-native/-/lottie-react-native-6.7.2.tgz", - "integrity": "sha512-MZVx6N1EeO/EaSx8T44mJ0aHc5Mqee+xIfWwszni0oz8U2wlHdaWGjES44dHxaxgAp/0dRaFt3PkpZ6egTzcBg==", + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/lottie-react-native/-/lottie-react-native-7.3.4.tgz", + "integrity": "sha512-XUh7eGFb7ID8JRdU6U4N4cYQeYmjtdQRvd8ZXJ6xrdSsn5gZD0c79ITOREPcwJg4YupBFHgyV1GXdAHQP+KYUQ==", + "license": "Apache-2.0", "peerDependencies": { - "@dotlottie/react-player": "^1.6.1", - "@lottiefiles/react-lottie-player": "^3.5.3", + "@lottiefiles/dotlottie-react": "^0.13.5", "react": "*", "react-native": ">=0.46", "react-native-windows": ">=0.63.x" }, "peerDependenciesMeta": { - "@dotlottie/react-player": { - "optional": true - }, - "@lottiefiles/react-lottie-player": { + "@lottiefiles/dotlottie-react": { "optional": true }, "react-native-windows": { @@ -11222,6 +9431,7 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", "dependencies": { "yallist": "^3.0.2" } @@ -11231,6 +9441,7 @@ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, + "license": "MIT", "dependencies": { "semver": "^7.5.3" }, @@ -11242,10 +9453,11 @@ } }, "node_modules/make-dir/node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -11257,19 +9469,38 @@ "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" } }, + "node_modules/marky": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.3.0.tgz", + "integrity": "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==", + "license": "Apache-2.0" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/memoize-one": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", + "license": "MIT" }, "node_modules/merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", "integrity": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==", + "license": "MIT", "dependencies": { "is-plain-obj": "^2.1.0" }, @@ -11280,533 +9511,224 @@ "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, + "devOptional": true, + "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/metro": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro/-/metro-0.73.10.tgz", - "integrity": "sha512-J2gBhNHFtc/Z48ysF0B/bfTwUwaRDLjNv7egfhQCc+934dpXcjJG2KZFeuybF+CvA9vo4QUi56G2U+RSAJ5tsA==", + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro/-/metro-0.81.5.tgz", + "integrity": "sha512-YpFF0DDDpDVygeca2mAn7K0+us+XKmiGk4rIYMz/CRdjFoCGqAei/IQSpV0UrGfQbToSugpMQeQJveaWSH88Hg==", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.0.0", - "@babel/core": "^7.20.0", - "@babel/generator": "^7.20.0", - "@babel/parser": "^7.20.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.20.0", - "@babel/types": "^7.20.0", - "absolute-path": "^0.0.0", + "@babel/code-frame": "^7.24.7", + "@babel/core": "^7.25.2", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.3", + "@babel/types": "^7.25.2", "accepts": "^1.3.7", - "async": "^3.2.2", "chalk": "^4.0.0", "ci-info": "^2.0.0", "connect": "^3.6.5", "debug": "^2.2.0", - "denodeify": "^1.2.1", "error-stack-parser": "^2.0.6", + "flow-enums-runtime": "^0.0.6", "graceful-fs": "^4.2.4", - "hermes-parser": "0.8.0", - "image-size": "^0.6.0", + "hermes-parser": "0.25.1", + "image-size": "^1.0.2", "invariant": "^2.2.4", - "jest-worker": "^27.2.0", + "jest-worker": "^29.7.0", "jsc-safe-url": "^0.2.2", "lodash.throttle": "^4.1.1", - "metro-babel-transformer": "0.73.10", - "metro-cache": "0.73.10", - "metro-cache-key": "0.73.10", - "metro-config": "0.73.10", - "metro-core": "0.73.10", - "metro-file-map": "0.73.10", - "metro-hermes-compiler": "0.73.10", - "metro-inspector-proxy": "0.73.10", - "metro-minify-terser": "0.73.10", - "metro-minify-uglify": "0.73.10", - "metro-react-native-babel-preset": "0.73.10", - "metro-resolver": "0.73.10", - "metro-runtime": "0.73.10", - "metro-source-map": "0.73.10", - "metro-symbolicate": "0.73.10", - "metro-transform-plugins": "0.73.10", - "metro-transform-worker": "0.73.10", + "metro-babel-transformer": "0.81.5", + "metro-cache": "0.81.5", + "metro-cache-key": "0.81.5", + "metro-config": "0.81.5", + "metro-core": "0.81.5", + "metro-file-map": "0.81.5", + "metro-resolver": "0.81.5", + "metro-runtime": "0.81.5", + "metro-source-map": "0.81.5", + "metro-symbolicate": "0.81.5", + "metro-transform-plugins": "0.81.5", + "metro-transform-worker": "0.81.5", "mime-types": "^2.1.27", - "node-fetch": "^2.2.0", "nullthrows": "^1.1.1", - "rimraf": "^3.0.2", "serialize-error": "^2.1.0", "source-map": "^0.5.6", - "strip-ansi": "^6.0.0", - "temp": "0.8.3", "throat": "^5.0.0", - "ws": "^7.5.1", - "yargs": "^17.5.1" + "ws": "^7.5.10", + "yargs": "^17.6.2" }, "bin": { "metro": "src/cli.js" - } - }, - "node_modules/metro-babel-transformer": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.73.10.tgz", - "integrity": "sha512-Yv2myTSnpzt/lTyurLvqYbBkytvUJcLHN8XD3t7W6rGiLTQPzmf1zypHQLphvcAXtCWBOXFtH7KLOSi2/qMg+A==", - "dependencies": { - "@babel/core": "^7.20.0", - "hermes-parser": "0.8.0", - "metro-source-map": "0.73.10", - "nullthrows": "^1.1.1" - } - }, - "node_modules/metro-cache": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.73.10.tgz", - "integrity": "sha512-wPGlQZpdVlM404m7MxJqJ+hTReDr5epvfPbt2LerUAHY9RN99w61FeeAe25BMZBwgUgDtAsfGlJ51MBHg8MAqw==", - "dependencies": { - "metro-core": "0.73.10", - "rimraf": "^3.0.2" - } - }, - "node_modules/metro-cache-key": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.73.10.tgz", - "integrity": "sha512-JMVDl/EREDiUW//cIcUzRjKSwE2AFxVWk47cFBer+KA4ohXIG2CQPEquT56hOw1Y1s6gKNxxs1OlAOEsubrFjw==" - }, - "node_modules/metro-config": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.73.10.tgz", - "integrity": "sha512-wIlybd1Z9I8K2KcStTiJxTB7OK529dxFgogNpKCTU/3DxkgAASqSkgXnZP6kVyqjh5EOWAKFe5U6IPic7kXDdQ==", - "dependencies": { - "cosmiconfig": "^5.0.5", - "jest-validate": "^26.5.2", - "metro": "0.73.10", - "metro-cache": "0.73.10", - "metro-core": "0.73.10", - "metro-runtime": "0.73.10" - } - }, - "node_modules/metro-config/node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/metro-config/node_modules/@types/yargs": { - "version": "15.0.19", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", - "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/metro-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/metro-config/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/metro-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/metro-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/metro-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/metro-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/metro-config/node_modules/jest-get-type": { - "version": "26.3.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", - "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/metro-config/node_modules/jest-validate": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", - "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", - "dependencies": { - "@jest/types": "^26.6.2", - "camelcase": "^6.0.0", - "chalk": "^4.0.0", - "jest-get-type": "^26.3.0", - "leven": "^3.1.0", - "pretty-format": "^26.6.2" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/metro-config/node_modules/pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "dependencies": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/metro-config/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/metro-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/metro-core": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.73.10.tgz", - "integrity": "sha512-5uYkajIxKyL6W45iz/ftNnYPe1l92CvF2QJeon1CHsMXkEiOJxEjo41l+iSnO/YodBGrmMCyupSO4wOQGUc0lw==", - "dependencies": { - "lodash.throttle": "^4.1.1", - "metro-resolver": "0.73.10" - } - }, - "node_modules/metro-file-map": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.73.10.tgz", - "integrity": "sha512-XOMWAybeaXyD6zmVZPnoCCL2oO3rp4ta76oUlqWP0skBzhFxVtkE/UtDwApEMUY361JeBBago647gnKiARs+1g==", - "dependencies": { - "abort-controller": "^3.0.0", - "anymatch": "^3.0.3", - "debug": "^2.2.0", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.4", - "invariant": "^2.2.4", - "jest-regex-util": "^27.0.6", - "jest-serializer": "^27.0.6", - "jest-util": "^27.2.0", - "jest-worker": "^27.2.0", - "micromatch": "^4.0.4", - "nullthrows": "^1.1.1", - "walker": "^1.0.7" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/metro-file-map/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/metro-file-map/node_modules/@types/yargs": { - "version": "16.0.9", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", - "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/metro-file-map/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/metro-file-map/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/metro-file-map/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/metro-file-map/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/metro-file-map/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/metro-file-map/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/metro-file-map/node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=18.18" } }, - "node_modules/metro-file-map/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "node_modules/metro-babel-transformer": { + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.81.5.tgz", + "integrity": "sha512-oKCQuajU5srm+ZdDcFg86pG/U8hkSjBlkyFjz380SZ4TTIiI5F+OQB830i53D8hmqmcosa4wR/pnKv8y4Q3dLw==", + "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "@babel/core": "^7.25.2", + "flow-enums-runtime": "^0.0.6", + "hermes-parser": "0.25.1", + "nullthrows": "^1.1.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=18.18" } }, - "node_modules/metro-file-map/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/metro-cache": { + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.81.5.tgz", + "integrity": "sha512-wOsXuEgmZMZ5DMPoz1pEDerjJ11AuMy9JifH4yNW7NmWS0ghCRqvDxk13LsElzLshey8C+my/tmXauXZ3OqZgg==", + "license": "MIT", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "exponential-backoff": "^3.1.1", + "flow-enums-runtime": "^0.0.6", + "metro-core": "0.81.5" }, "engines": { - "node": ">= 10.13.0" + "node": ">=18.18" } }, - "node_modules/metro-file-map/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/metro-cache-key": { + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.81.5.tgz", + "integrity": "sha512-lGWnGVm1UwO8faRZ+LXQUesZSmP1LOg14OVR+KNPBip8kbMECbQJ8c10nGesw28uQT7AE0lwQThZPXlxDyCLKQ==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "flow-enums-runtime": "^0.0.6" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=18.18" } }, - "node_modules/metro-file-map/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/metro-file-map/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/metro-config": { + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.81.5.tgz", + "integrity": "sha512-oDRAzUvj6RNRxratFdcVAqtAsg+T3qcKrGdqGZFUdwzlFJdHGR9Z413sW583uD2ynsuOjA2QB6US8FdwiBdNKg==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "connect": "^3.6.5", + "cosmiconfig": "^5.0.5", + "flow-enums-runtime": "^0.0.6", + "jest-validate": "^29.7.0", + "metro": "0.81.5", + "metro-cache": "0.81.5", + "metro-core": "0.81.5", + "metro-runtime": "0.81.5" }, "engines": { - "node": ">=8" + "node": ">=18.18" } }, - "node_modules/metro-hermes-compiler": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-hermes-compiler/-/metro-hermes-compiler-0.73.10.tgz", - "integrity": "sha512-rTRWEzkVrwtQLiYkOXhSdsKkIObnL+Jqo+IXHI7VEK2aSLWRAbtGNqECBs44kbOUypDYTFFE+WLtoqvUWqYkWg==" + "node_modules/metro-core": { + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.81.5.tgz", + "integrity": "sha512-+2R0c8ByfV2N7CH5wpdIajCWa8escUFd8TukfoXyBq/vb6yTCsznoA25FhNXJ+MC/cz1L447Zj3vdUfCXIZBwg==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "lodash.throttle": "^4.1.1", + "metro-resolver": "0.81.5" + }, + "engines": { + "node": ">=18.18" + } }, - "node_modules/metro-inspector-proxy": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.73.10.tgz", - "integrity": "sha512-CEEvocYc5xCCZBtGSIggMCiRiXTrnBbh8pmjKQqm9TtJZALeOGyt5pXUaEkKGnhrXETrexsg6yIbsQHhEvVfvQ==", + "node_modules/metro-file-map": { + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.81.5.tgz", + "integrity": "sha512-mW1PKyiO3qZvjeeVjj1brhkmIotObA3/9jdbY1fQQYvEWM6Ml7bN/oJCRDGn2+bJRlG+J8pwyJ+DgdrM4BsKyg==", + "license": "MIT", "dependencies": { - "connect": "^3.6.5", "debug": "^2.2.0", - "ws": "^7.5.1", - "yargs": "^17.5.1" + "fb-watchman": "^2.0.0", + "flow-enums-runtime": "^0.0.6", + "graceful-fs": "^4.2.4", + "invariant": "^2.2.4", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "nullthrows": "^1.1.1", + "walker": "^1.0.7" }, - "bin": { - "metro-inspector-proxy": "src/cli.js" + "engines": { + "node": ">=18.18" } }, - "node_modules/metro-inspector-proxy/node_modules/debug": { + "node_modules/metro-file-map/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, - "node_modules/metro-inspector-proxy/node_modules/ms": { + "node_modules/metro-file-map/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/metro-inspector-proxy/node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, "node_modules/metro-minify-terser": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.73.10.tgz", - "integrity": "sha512-uG7TSKQ/i0p9kM1qXrwbmY3v+6BrMItsOcEXcSP8Z+68bb+t9HeVK0T/hIfUu1v1PEnonhkhfzVsaP8QyTd5lQ==", + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.81.5.tgz", + "integrity": "sha512-/mn4AxjANnsSS3/Bb+zA1G5yIS5xygbbz/OuPaJYs0CPcZCaWt66D+65j4Ft/nJkffUxcwE9mk4ubpkl3rjgtw==", + "license": "MIT", "dependencies": { + "flow-enums-runtime": "^0.0.6", "terser": "^5.15.0" - } - }, - "node_modules/metro-minify-uglify": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.73.10.tgz", - "integrity": "sha512-eocnSeJKnLz/UoYntVFhCJffED7SLSgbCHgNvI6ju6hFb6EFHGJT9OLbkJWeXaWBWD3Zw5mYLS8GGqGn/CHZPA==", - "dependencies": { - "uglify-es": "^3.1.9" + }, + "engines": { + "node": ">=18.18" } }, "node_modules/metro-react-native-babel-preset": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.73.10.tgz", - "integrity": "sha512-1/dnH4EHwFb2RKEKx34vVDpUS3urt2WEeR8FYim+ogqALg4sTpG7yeQPxWpbgKATezt4rNfqAANpIyH19MS4BQ==", + "version": "0.77.0", + "resolved": "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.77.0.tgz", + "integrity": "sha512-HPPD+bTxADtoE4y/4t1txgTQ1LVR6imOBy7RMHUsqMVTbekoi8Ph5YI9vKX2VMPtVWeFt0w9YnCSLPa76GcXsA==", + "deprecated": "Use @react-native/babel-preset instead", + "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.20.0", "@babel/plugin-proposal-async-generator-functions": "^7.0.0", - "@babel/plugin-proposal-class-properties": "^7.0.0", + "@babel/plugin-proposal-class-properties": "^7.18.0", "@babel/plugin-proposal-export-default-from": "^7.0.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0", + "@babel/plugin-proposal-numeric-separator": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.0", "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", - "@babel/plugin-proposal-optional-chaining": "^7.0.0", - "@babel/plugin-syntax-dynamic-import": "^7.0.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", "@babel/plugin-syntax-export-default-from": "^7.0.0", "@babel/plugin-syntax-flow": "^7.18.0", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", "@babel/plugin-syntax-optional-chaining": "^7.0.0", "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-async-to-generator": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.20.0", "@babel/plugin-transform-block-scoping": "^7.0.0", "@babel/plugin-transform-classes": "^7.0.0", "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.20.0", + "@babel/plugin-transform-flow-strip-types": "^7.20.0", "@babel/plugin-transform-function-name": "^7.0.0", "@babel/plugin-transform-literals": "^7.0.0", "@babel/plugin-transform-modules-commonjs": "^7.0.0", @@ -11820,273 +9742,189 @@ "@babel/plugin-transform-shorthand-properties": "^7.0.0", "@babel/plugin-transform-spread": "^7.0.0", "@babel/plugin-transform-sticky-regex": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", "@babel/plugin-transform-typescript": "^7.5.0", "@babel/plugin-transform-unicode-regex": "^7.0.0", "@babel/template": "^7.0.0", + "babel-plugin-transform-flow-enums": "^0.0.2", "react-refresh": "^0.4.0" }, + "engines": { + "node": ">=18" + }, "peerDependencies": { "@babel/core": "*" } }, - "node_modules/metro-react-native-babel-transformer": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.73.10.tgz", - "integrity": "sha512-4G/upwqKdmKEjmsNa92/NEgsOxUWOygBVs+FXWfXWKgybrmcjh3NoqdRYrROo9ZRA/sB9Y/ZXKVkWOGKHtGzgg==", - "dependencies": { - "@babel/core": "^7.20.0", - "babel-preset-fbjs": "^3.4.0", - "hermes-parser": "0.8.0", - "metro-babel-transformer": "0.73.10", - "metro-react-native-babel-preset": "0.73.10", - "metro-source-map": "0.73.10", - "nullthrows": "^1.1.1" - }, - "peerDependencies": { - "@babel/core": "*" + "node_modules/metro-react-native-babel-preset/node_modules/react-refresh": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz", + "integrity": "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, "node_modules/metro-resolver": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.73.10.tgz", - "integrity": "sha512-HeXbs+0wjakaaVQ5BI7eT7uqxlZTc9rnyw6cdBWWMgUWB++KpoI0Ge7Hi6eQAOoVAzXC3m26mPFYLejpzTWjng==", + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.81.5.tgz", + "integrity": "sha512-6BX8Nq3g3go3FxcyXkVbWe7IgctjDTk6D9flq+P201DfHHQ28J+DWFpVelFcrNTn4tIfbP/Bw7u/0g2BGmeXfQ==", + "license": "MIT", "dependencies": { - "absolute-path": "^0.0.0" + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18.18" } }, "node_modules/metro-runtime": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.73.10.tgz", - "integrity": "sha512-EpVKm4eN0Fgx2PEWpJ5NiMArV8zVoOin866jIIvzFLpmkZz1UEqgjf2JAfUJnjgv3fjSV3JqeGG2vZCaGQBTow==", + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.81.5.tgz", + "integrity": "sha512-M/Gf71ictUKP9+77dV/y8XlAWg7xl76uhU7ggYFUwEdOHHWPG6gLBr1iiK0BmTjPFH8yRo/xyqMli4s3oGorPQ==", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.0.0", - "react-refresh": "^0.4.0" + "@babel/runtime": "^7.25.0", + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18.18" } }, "node_modules/metro-source-map": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.73.10.tgz", - "integrity": "sha512-NAGv14701p/YaFZ76KzyPkacBw/QlEJF1f8elfs23N1tC33YyKLDKvPAzFJiYqjdcFvuuuDCA8JCXd2TgLxNPw==", + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.81.5.tgz", + "integrity": "sha512-Jz+CjvCKLNbJZYJTBeN3Kq9kIJf6b61MoLBdaOQZJ5Ajhw6Pf95Nn21XwA8BwfUYgajsi6IXsp/dTZsYJbN00Q==", + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.20.0", - "@babel/types": "^7.20.0", + "@babel/traverse": "^7.25.3", + "@babel/traverse--for-generate-function-map": "npm:@babel/traverse@^7.25.3", + "@babel/types": "^7.25.2", + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "metro-symbolicate": "0.73.10", + "metro-symbolicate": "0.81.5", "nullthrows": "^1.1.1", - "ob1": "0.73.10", + "ob1": "0.81.5", "source-map": "^0.5.6", "vlq": "^1.0.0" + }, + "engines": { + "node": ">=18.18" } }, "node_modules/metro-source-map/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/metro-symbolicate": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.73.10.tgz", - "integrity": "sha512-PmCe3TOe1c/NVwMlB+B17me951kfkB3Wve5RqJn+ErPAj93od1nxicp6OJe7JT4QBRnpUP8p9tw2sHKqceIzkA==", + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.81.5.tgz", + "integrity": "sha512-X3HV3n3D6FuTE11UWFICqHbFMdTavfO48nXsSpnNGFkUZBexffu0Xd+fYKp+DJLNaQr3S+lAs8q9CgtDTlRRuA==", + "license": "MIT", "dependencies": { + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "metro-source-map": "0.73.10", + "metro-source-map": "0.81.5", "nullthrows": "^1.1.1", "source-map": "^0.5.6", - "through2": "^2.0.1", "vlq": "^1.0.0" }, "bin": { "metro-symbolicate": "src/index.js" }, "engines": { - "node": ">=8.3" + "node": ">=18.18" } }, "node_modules/metro-symbolicate/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/metro-transform-plugins": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.73.10.tgz", - "integrity": "sha512-D4AgD3Vsrac+4YksaPmxs/0ocT67bvwTkFSIgWWeDvWwIG0U1iHzTS9f8Bvb4PITnXryDoFtjI6OWF7uOpGxpA==", - "dependencies": { - "@babel/core": "^7.20.0", - "@babel/generator": "^7.20.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.20.0", - "nullthrows": "^1.1.1" - } - }, - "node_modules/metro-transform-worker": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.73.10.tgz", - "integrity": "sha512-IySvVubudFxahxOljWtP0QIMMpgUrCP0bW16cz2Enof0PdumwmR7uU3dTbNq6S+XTzuMHR+076aIe4VhPAWsIQ==", + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.81.5.tgz", + "integrity": "sha512-MmHhVx/1dJC94FN7m3oHgv5uOjKH8EX8pBeu1pnPMxbJrx6ZuIejO0k84zTSaQTZ8RxX1wqwzWBpXAWPjEX8mA==", + "license": "MIT", "dependencies": { - "@babel/core": "^7.20.0", - "@babel/generator": "^7.20.0", - "@babel/parser": "^7.20.0", - "@babel/types": "^7.20.0", - "babel-preset-fbjs": "^3.4.0", - "metro": "0.73.10", - "metro-babel-transformer": "0.73.10", - "metro-cache": "0.73.10", - "metro-cache-key": "0.73.10", - "metro-hermes-compiler": "0.73.10", - "metro-source-map": "0.73.10", - "metro-transform-plugins": "0.73.10", + "@babel/core": "^7.25.2", + "@babel/generator": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.3", + "flow-enums-runtime": "^0.0.6", "nullthrows": "^1.1.1" - } - }, - "node_modules/metro/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=18.18" } }, - "node_modules/metro/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/metro-transform-worker": { + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.81.5.tgz", + "integrity": "sha512-lUFyWVHa7lZFRSLJEv+m4jH8WrR5gU7VIjUlg4XmxQfV8ngY4V10ARKynLhMYPeQGl7Qvf+Ayg0eCZ272YZ4Mg==", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@babel/core": "^7.25.2", + "@babel/generator": "^7.25.0", + "@babel/parser": "^7.25.3", + "@babel/types": "^7.25.2", + "flow-enums-runtime": "^0.0.6", + "metro": "0.81.5", + "metro-babel-transformer": "0.81.5", + "metro-cache": "0.81.5", + "metro-cache-key": "0.81.5", + "metro-minify-terser": "0.81.5", + "metro-source-map": "0.81.5", + "metro-transform-plugins": "0.81.5", + "nullthrows": "^1.1.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=18.18" } }, "node_modules/metro/node_modules/ci-info": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - }, - "node_modules/metro/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/metro/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" }, "node_modules/metro/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, - "node_modules/metro/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/metro/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/metro/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, "node_modules/metro/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, "node_modules/metro/node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/metro/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/metro/node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -12096,20 +9934,22 @@ } }, "node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", "bin": { "mime": "cli.js" }, "engines": { - "node": ">=4.0.0" + "node": ">=4" } }, "node_modules/mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -12118,6 +9958,7 @@ "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, @@ -12125,18 +9966,12 @@ "node": ">= 0.6" } }, - "node_modules/mime-types/node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -12145,6 +9980,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -12156,6 +9992,8 @@ "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -12165,36 +10003,40 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", "dev": true, + "license": "ISC", "engines": { "node": ">=8" } }, "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dependencies": { - "minimist": "^1.2.6" - }, + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", "bin": { "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -12206,18 +10048,21 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/natural-compare-lite": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -12225,65 +10070,46 @@ "node_modules/neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" }, "node_modules/nocache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz", "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=12.0.0" } }, - "node_modules/node-dir": { - "version": "0.1.17", - "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", - "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", - "dependencies": { - "minimatch": "^3.0.2" - }, - "engines": { - "node": ">= 0.10.5" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "node": ">= 6.13.0" } }, "node_modules/node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + "version": "2.0.26", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.26.tgz", + "integrity": "sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==", + "license": "MIT" }, "node_modules/node-stream-zip": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/node-stream-zip/-/node-stream-zip-1.15.0.tgz", "integrity": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=0.12.0" }, @@ -12296,6 +10122,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12304,7 +10131,8 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, + "devOptional": true, + "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, @@ -12315,26 +10143,36 @@ "node_modules/nullthrows": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz", - "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" + "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==", + "license": "MIT" }, "node_modules/ob1": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.73.10.tgz", - "integrity": "sha512-aO6EYC+QRRCkZxVJhCWhLKgVjhNuD6Gu1riGjxrIm89CqLsmKgxzYDDEsktmKsoDeRdWGQM5EdMzXDl5xcVfsw==" + "version": "0.81.5", + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.81.5.tgz", + "integrity": "sha512-iNpbeXPLmaiT9I5g16gFFFjsF3sGxLpYG2EGP3dfFB4z+l9X60mp/yRzStHhMtuNt8qmf7Ww80nOPQHngHhnIQ==", + "license": "MIT", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18.18" + } }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -12347,19 +10185,23 @@ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.5", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", "object-keys": "^1.1.1" }, "engines": { @@ -12370,14 +10212,16 @@ } }, "node_modules/object.entries": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", - "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" + "es-object-atoms": "^1.1.1" }, "engines": { "node": ">= 0.4" @@ -12388,6 +10232,7 @@ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -12402,12 +10247,14 @@ } }, "node_modules/object.values": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, @@ -12422,6 +10269,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -12430,9 +10278,11 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -12441,6 +10291,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", "dependencies": { "wrappy": "1" } @@ -12449,6 +10300,8 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "devOptional": true, + "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, @@ -12460,14 +10313,19 @@ } }, "node_modules/open": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz", - "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==", + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "license": "MIT", "dependencies": { - "is-wsl": "^1.1.0" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/optionator": { @@ -12475,6 +10333,7 @@ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, + "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -12491,6 +10350,8 @@ "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "devOptional": true, + "license": "MIT", "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", @@ -12509,90 +10370,30 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "engines": { - "node": ">=4" + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "devOptional": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -12607,6 +10408,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -12618,6 +10420,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -12632,6 +10435,7 @@ "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", "engines": { "node": ">=6" } @@ -12640,7 +10444,8 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, + "devOptional": true, + "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -12652,7 +10457,8 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, + "devOptional": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -12670,14 +10476,107 @@ "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, + "node_modules/patch-package": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.1.tgz", + "integrity": "sha512-VsKRIA8f5uqHQ7NGhwIna6Bx6D9s/1iXlA1hthBVBEbkq+t4kXD0HHt+rJhf/Z+Ci0F/HCB2hvn0qLdLG+Qxlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@yarnpkg/lockfile": "^1.1.0", + "chalk": "^4.1.2", + "ci-info": "^3.7.0", + "cross-spawn": "^7.0.3", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^10.0.0", + "json-stable-stringify": "^1.0.2", + "klaw-sync": "^6.0.0", + "minimist": "^1.2.6", + "open": "^7.4.2", + "semver": "^7.5.3", + "slash": "^2.0.0", + "tmp": "^0.2.4", + "yaml": "^2.2.2" + }, + "bin": { + "patch-package": "index.js" + }, + "engines": { + "node": ">=14", + "npm": ">5" + } + }, + "node_modules/patch-package/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/patch-package/node_modules/jsonfile": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz", + "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/patch-package/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/patch-package/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/patch-package/node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", "engines": { "node": ">=8" } @@ -12686,6 +10585,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -12694,7 +10594,8 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, + "devOptional": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -12702,13 +10603,15 @@ "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" }, "node_modules/path-scurry": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" @@ -12724,13 +10627,15 @@ "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/path-scurry/node_modules/minipass": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, + "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } @@ -12740,19 +10645,22 @@ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", "engines": { "node": ">=8.6" }, @@ -12764,14 +10672,16 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "license": "MIT", "engines": { "node": ">= 6" } @@ -12781,6 +10691,7 @@ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, + "license": "MIT", "dependencies": { "find-up": "^4.0.0" }, @@ -12793,6 +10704,7 @@ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "dev": true, + "license": "MIT", "dependencies": { "find-up": "^3.0.0" }, @@ -12805,6 +10717,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^3.0.0" }, @@ -12817,6 +10730,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -12830,6 +10744,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -12845,6 +10760,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^2.0.0" }, @@ -12857,15 +10773,17 @@ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -12875,6 +10793,7 @@ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } @@ -12884,6 +10803,7 @@ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", "dev": true, + "license": "MIT", "bin": { "prettier": "bin-prettier.js" }, @@ -12899,6 +10819,7 @@ "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, + "license": "MIT", "dependencies": { "fast-diff": "^1.1.2" }, @@ -12910,6 +10831,7 @@ "version": "29.7.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -12923,6 +10845,7 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -12933,17 +10856,14 @@ "node_modules/pretty-format/node_modules/react-is": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" }, "node_modules/promise": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "license": "MIT", "dependencies": { "asap": "~2.0.6" } @@ -12952,6 +10872,8 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "devOptional": true, + "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -12964,26 +10886,19 @@ "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, "node_modules/punycode": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -13002,12 +10917,14 @@ "type": "opencollective", "url": "https://opencollective.com/fast-check" } - ] + ], + "license": "MIT" }, "node_modules/query-string": { "version": "7.1.3", "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.3.tgz", "integrity": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==", + "license": "MIT", "dependencies": { "decode-uri-component": "^0.2.2", "filter-obj": "^1.1.0", @@ -13021,11 +10938,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.3" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, + "devOptional": true, "funding": [ { "type": "github", @@ -13039,20 +10965,23 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" }, @@ -13061,38 +10990,20 @@ } }, "node_modules/react-devtools-core": { - "version": "4.28.5", - "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.28.5.tgz", - "integrity": "sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==", + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-6.1.5.tgz", + "integrity": "sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==", + "license": "MIT", "dependencies": { "shell-quote": "^1.6.1", "ws": "^7" } }, - "node_modules/react-devtools-core/node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/react-freeze": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/react-freeze/-/react-freeze-1.0.4.tgz", "integrity": "sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -13103,119 +11014,107 @@ "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" }, "node_modules/react-native": { - "version": "0.71.19", - "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.71.19.tgz", - "integrity": "sha512-E6Rz4lpe4NC9ZR6zq9AWiB0MAoVeidr+aPu/pmwk5ezvVL/wbQ1Gdj70v7fKMC8Nz5wYFO1S0XUNPUKYaPhfeg==", - "dependencies": { - "@jest/create-cache-key-function": "^29.2.1", - "@react-native-community/cli": "10.2.7", - "@react-native-community/cli-platform-android": "10.2.0", - "@react-native-community/cli-platform-ios": "10.2.5", - "@react-native/assets": "1.0.0", - "@react-native/normalize-color": "2.1.0", - "@react-native/polyfills": "2.0.0", + "version": "0.77.3", + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.77.3.tgz", + "integrity": "sha512-fIYZ9+zX+iGcb/xGZA6oN3Uq9x46PdqVYtlyG+WmOIFQPVXgryaS9FJLdTvoTpsEA2JXGSGgNOdm640IdAW3cA==", + "license": "MIT", + "dependencies": { + "@jest/create-cache-key-function": "^29.6.3", + "@react-native/assets-registry": "0.77.3", + "@react-native/codegen": "0.77.3", + "@react-native/community-cli-plugin": "0.77.3", + "@react-native/gradle-plugin": "0.77.3", + "@react-native/js-polyfills": "0.77.3", + "@react-native/normalize-colors": "0.77.3", + "@react-native/virtualized-lists": "0.77.3", "abort-controller": "^3.0.0", "anser": "^1.4.9", "ansi-regex": "^5.0.0", - "base64-js": "^1.1.2", - "deprecated-react-native-prop-types": "^3.0.1", + "babel-jest": "^29.7.0", + "babel-plugin-syntax-hermes-parser": "0.25.1", + "base64-js": "^1.5.1", + "chalk": "^4.0.0", + "commander": "^12.0.0", "event-target-shim": "^5.0.1", + "flow-enums-runtime": "^0.0.6", + "glob": "^7.1.1", "invariant": "^2.2.4", - "jest-environment-node": "^29.2.1", + "jest-environment-node": "^29.6.3", "jsc-android": "^250231.0.0", "memoize-one": "^5.0.0", - "metro-react-native-babel-transformer": "0.73.10", - "metro-runtime": "0.73.10", - "metro-source-map": "0.73.10", - "mkdirp": "^0.5.1", + "metro-runtime": "^0.81.5", + "metro-source-map": "^0.81.5", "nullthrows": "^1.1.1", - "pretty-format": "^26.5.2", + "pretty-format": "^29.7.0", "promise": "^8.3.0", - "react-devtools-core": "^4.26.1", - "react-native-codegen": "^0.71.6", - "react-native-gradle-plugin": "^0.71.19", - "react-refresh": "^0.4.0", - "react-shallow-renderer": "^16.15.0", + "react-devtools-core": "^6.0.1", + "react-refresh": "^0.14.0", "regenerator-runtime": "^0.13.2", - "scheduler": "^0.23.0", - "stacktrace-parser": "^0.1.3", - "use-sync-external-store": "^1.0.0", + "scheduler": "0.24.0-canary-efb381bbf-20230505", + "semver": "^7.1.3", + "stacktrace-parser": "^0.1.10", "whatwg-fetch": "^3.0.0", - "ws": "^6.2.2" + "ws": "^6.2.3", + "yargs": "^17.6.2" }, "bin": { "react-native": "cli.js" }, "engines": { - "node": ">=14" + "node": ">=18" }, "peerDependencies": { - "react": "18.2.0" + "@types/react": "^18.2.6", + "react": "^18.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, "node_modules/react-native-animatable": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/react-native-animatable/-/react-native-animatable-1.3.3.tgz", "integrity": "sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==", + "license": "MIT", "dependencies": { "prop-types": "^15.7.2" } }, - "node_modules/react-native-camera": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/react-native-camera/-/react-native-camera-4.2.1.tgz", - "integrity": "sha512-+Vkql24PFYQfsPRznJCvPwJQfyzCnjlcww/iZ4Ej80bgivKjL9eU0IMQIXp4yi6XCrKi4voWXxIDPMupQZKeIQ==", - "dependencies": { - "prop-types": "^15.6.2" - } - }, - "node_modules/react-native-codegen": { - "version": "0.71.6", - "resolved": "https://registry.npmjs.org/react-native-codegen/-/react-native-codegen-0.71.6.tgz", - "integrity": "sha512-e5pR4VldIhEaFctfSAEgxbng0uG4gjBQxAHes3EKLdosH/Av90pQfSe9IDVdFIngvNPzt8Y14pNjrtqov/yNIg==", - "dependencies": { - "@babel/parser": "^7.14.0", - "flow-parser": "^0.185.0", - "jscodeshift": "^0.14.0", - "nullthrows": "^1.1.1" - } - }, "node_modules/react-native-device-info": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/react-native-device-info/-/react-native-device-info-11.1.0.tgz", - "integrity": "sha512-hzXJSObJdezEz0hF7MAJ3tGeoesuQWenXXt9mrQR9Mjb8kXpZ09rqSsZ/quNpJdZpQ3rYiFa3/0GFG5KNn9PBg==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/react-native-device-info/-/react-native-device-info-14.0.0.tgz", + "integrity": "sha512-hKgH5URRQyMvr1wcBF8pZ9EnSM6fLGAfYRGZaOM8ljkr841kV5bjteI/p9ORfulxgZjB/vfz2J8zMAYwPOQWJg==", + "license": "MIT", "peerDependencies": { "react-native": "*" } }, "node_modules/react-native-gesture-handler": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.15.0.tgz", - "integrity": "sha512-cmMGW8k86o/xgVTBZZOPohvR5re4Vh65PUxH4HbBBJAYTog4aN4wTVTUlnoky01HuSN8/X4h3tI/K3XLPoDnsg==", + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.22.1.tgz", + "integrity": "sha512-E0C9D+Ia2UZYevoSV9rTKjhFWEVdR/3l4Z3TUoQrI/wewgzDlmJOrYvGW5aMlPUuQF2vHQOdFfAWhVEqFu4tWw==", + "license": "MIT", "dependencies": { "@egjs/hammerjs": "^2.0.17", "hoist-non-react-statics": "^3.3.0", - "invariant": "^2.2.4", - "lodash": "^4.17.21", - "prop-types": "^15.7.2" + "invariant": "^2.2.4" }, "peerDependencies": { "react": "*", "react-native": "*" } }, - "node_modules/react-native-gradle-plugin": { - "version": "0.71.19", - "resolved": "https://registry.npmjs.org/react-native-gradle-plugin/-/react-native-gradle-plugin-0.71.19.tgz", - "integrity": "sha512-1dVk9NwhoyKHCSxcrM6vY6cxmojeATsBobDicX0ZKr7DgUF2cBQRTKsimQFvzH8XhOVXyH8p4HyDSZNIFI8OlQ==" - }, "node_modules/react-native-image-picker": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/react-native-image-picker/-/react-native-image-picker-7.1.2.tgz", - "integrity": "sha512-b5y5nP60RIPxlAXlptn2QwlIuZWCUDWa/YPUVjgHc0Ih60mRiOg1PSzf0IjHSLeOZShCpirpvSPGnDExIpTRUg==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/react-native-image-picker/-/react-native-image-picker-7.2.3.tgz", + "integrity": "sha512-zKIZUlQNU3EtqizsXSH92zPeve4vpUrsqHu2kkpCxWE9TZhJFZBb+irDsBOY8J21k0+Edgt06TMQGJ+iPUIXyA==", + "license": "MIT", "peerDependencies": { "react": "*", "react-native": "*" @@ -13225,6 +11124,7 @@ "version": "2.8.3", "resolved": "https://registry.npmjs.org/react-native-linear-gradient/-/react-native-linear-gradient-2.8.3.tgz", "integrity": "sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA==", + "license": "MIT", "peerDependencies": { "react": "*", "react-native": "*" @@ -13242,15 +11142,35 @@ "react-native": ">=0.57.0" } }, - "node_modules/react-native-lottie-splash-screen/node_modules/lottie-ios": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/lottie-ios/-/lottie-ios-3.2.3.tgz", - "integrity": "sha512-mubYMN6+1HXa8z3EJKBvNBkl4UoVM4McjESeB2PgvRMSngmJtC5yUMRdhbbrIAn5Liu3hFGao/14s5hQIgtkRQ==" + "node_modules/react-native-lottie-splash-screen/node_modules/lottie-react-native": { + "version": "6.7.2", + "resolved": "https://registry.npmjs.org/lottie-react-native/-/lottie-react-native-6.7.2.tgz", + "integrity": "sha512-MZVx6N1EeO/EaSx8T44mJ0aHc5Mqee+xIfWwszni0oz8U2wlHdaWGjES44dHxaxgAp/0dRaFt3PkpZ6egTzcBg==", + "license": "Apache-2.0", + "peerDependencies": { + "@dotlottie/react-player": "^1.6.1", + "@lottiefiles/react-lottie-player": "^3.5.3", + "react": "*", + "react-native": ">=0.46", + "react-native-windows": ">=0.63.x" + }, + "peerDependenciesMeta": { + "@dotlottie/react-player": { + "optional": true + }, + "@lottiefiles/react-lottie-player": { + "optional": true + }, + "react-native-windows": { + "optional": true + } + } }, "node_modules/react-native-modal": { "version": "13.0.1", "resolved": "https://registry.npmjs.org/react-native-modal/-/react-native-modal-13.0.1.tgz", "integrity": "sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==", + "license": "MIT", "dependencies": { "prop-types": "^15.6.2", "react-native-animatable": "1.3.3" @@ -13261,13 +11181,14 @@ } }, "node_modules/react-native-permissions": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/react-native-permissions/-/react-native-permissions-3.4.0.tgz", - "integrity": "sha512-qNMFVPBhffuC7APZ7/etzlnrDGh7Givfq3pOI37GDjcenOFEOMFU8qyU+vRrrOwbUMuwtDAjWxe6ZBX1ZM+aAw==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/react-native-permissions/-/react-native-permissions-4.1.5.tgz", + "integrity": "sha512-r6VMRacASmtRHS+GZ+5HQCp9p9kiE+UU9magHOZCXZLTJitdTuVHWZRrb4v4oqZGU+zAp3mZhTQftuMMv+WLUg==", + "license": "MIT", "peerDependencies": { - "react": ">=16.13.1", - "react-native": ">=0.63.3", - "react-native-windows": ">=0.62.0" + "react": ">=18.1.0", + "react-native": ">=0.70.0", + "react-native-windows": ">=0.70.0" }, "peerDependenciesMeta": { "react-native-windows": { @@ -13275,66 +11196,45 @@ } } }, - "node_modules/react-native-qrcode-scanner": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/react-native-qrcode-scanner/-/react-native-qrcode-scanner-1.5.5.tgz", - "integrity": "sha512-il79uStkFqUvofqXJQfOL30qgQyU17MUKxj7IGHv6oT2OxIY/vutTwuPPDbsivtv0yTMHP4dGx/79oys4eAuNw==", - "dependencies": { - "@react-native-async-storage/async-storage": "^1.13.4", - "prop-types": "^15.5.10", - "react-native-permissions": "^2.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/react-native-qrcode-scanner" - }, - "peerDependencies": { - "react-native-camera": ">=1.0.2" - } - }, - "node_modules/react-native-qrcode-scanner/node_modules/react-native-permissions": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/react-native-permissions/-/react-native-permissions-2.2.2.tgz", - "integrity": "sha512-ihf4shQDSX5Oo9ChQXb9kr13mmyyNem5MaEvOpr3dCjhBOBWyEMztXm9/uPK1Qg5PsNpaYLa1KpcPZDCw87LXg==", - "peerDependencies": { - "react": ">=16.8.6", - "react-native": ">=0.60.0" - } - }, "node_modules/react-native-reanimated": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.4.2.tgz", - "integrity": "sha512-FbtG+f1PB005vDTJSv4zAnTK7nNXi+FjFgbAM5gOzIZDajfph2BFMSUstzIsN8T77+OKuugUBmcTqLnQ24EBVg==", + "version": "3.16.7", + "resolved": "https://registry.npmjs.org/react-native-reanimated/-/react-native-reanimated-3.16.7.tgz", + "integrity": "sha512-qoUUQOwE1pHlmQ9cXTJ2MX9FQ9eHllopCLiWOkDkp6CER95ZWeXhJCP4cSm6AD4jigL5jHcZf/SkWrg8ttZUsw==", + "license": "MIT", "dependencies": { - "@babel/plugin-transform-object-assign": "^7.16.7", + "@babel/plugin-transform-arrow-functions": "^7.0.0-0", + "@babel/plugin-transform-class-properties": "^7.0.0-0", + "@babel/plugin-transform-classes": "^7.0.0-0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.0.0-0", + "@babel/plugin-transform-optional-chaining": "^7.0.0-0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0-0", + "@babel/plugin-transform-template-literals": "^7.0.0-0", + "@babel/plugin-transform-unicode-regex": "^7.0.0-0", "@babel/preset-typescript": "^7.16.7", "convert-source-map": "^2.0.0", "invariant": "^2.2.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0-0", - "@babel/plugin-proposal-optional-chaining": "^7.0.0-0", - "@babel/plugin-transform-arrow-functions": "^7.0.0-0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0-0", - "@babel/plugin-transform-template-literals": "^7.0.0-0", "react": "*", "react-native": "*" } }, "node_modules/react-native-safe-area-context": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.3.0.tgz", - "integrity": "sha512-IrCNx56LO9RJ75yCf2CSSO1ceLj3mvxTAF+HWnehaeRIfF4pIcIn3WEUlXulFiha641OKS5X0+1XZCbbQ7pITA==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-5.6.1.tgz", + "integrity": "sha512-/wJE58HLEAkATzhhX1xSr+fostLsK8Q97EfpfMDKo8jlOc1QKESSX/FQrhk7HhQH/2uSaox4Y86sNaI02kteiA==", + "license": "MIT", "peerDependencies": { "react": "*", "react-native": "*" } }, "node_modules/react-native-screens": { - "version": "3.25.0", - "resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.25.0.tgz", - "integrity": "sha512-TSC2Ad0hh763I8QT6XxMsPXAagQ+RawDSdFtKRvIz9fCYr96AjRwwaqmYivbqlDywOgcRBkIVynkFtp0ThmlYw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/react-native-screens/-/react-native-screens-4.18.0.tgz", + "integrity": "sha512-mRTLWL7Uc1p/RFNveEIIrhP22oxHduC2ZnLr/2iHwBeYpGXR0rJZ7Bgc0ktxQSHRjWTPT70qc/7yd4r9960PBQ==", + "license": "MIT", "dependencies": { "react-freeze": "^1.0.0", "warn-once": "^0.1.0" @@ -13347,14 +11247,40 @@ "node_modules/react-native-simple-toast": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/react-native-simple-toast/-/react-native-simple-toast-1.1.3.tgz", - "integrity": "sha512-bkZy25axqlU4L6IoTysSl5KOQA7qdxzivbXz/L/yAw9g9fENxjzYvUUtv5wWtgq7mzOe5HiJ7GCQrOl3MhIevQ==" + "integrity": "sha512-bkZy25axqlU4L6IoTysSl5KOQA7qdxzivbXz/L/yAw9g9fENxjzYvUUtv5wWtgq7mzOe5HiJ7GCQrOl3MhIevQ==", + "license": "MIT" + }, + "node_modules/react-native-vision-camera": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/react-native-vision-camera/-/react-native-vision-camera-4.7.2.tgz", + "integrity": "sha512-C+5PvlSunN6I4aYplSask+v3jfhgduZumIVw6H6lG+Afpf8boIcG3uFSsSfVgj+hxI7fx6qM6bsciEhzgxEUYg==", + "license": "MIT", + "peerDependencies": { + "@shopify/react-native-skia": "*", + "react": "*", + "react-native": "*", + "react-native-reanimated": "*", + "react-native-worklets-core": "*" + }, + "peerDependenciesMeta": { + "@shopify/react-native-skia": { + "optional": true + }, + "react-native-reanimated": { + "optional": true + }, + "react-native-worklets-core": { + "optional": true + } + } }, "node_modules/react-native-webview": { - "version": "13.10.5", - "resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.10.5.tgz", - "integrity": "sha512-ZfQJHyifuZop8cQB8HYpL9dxss9Cw9sOlMU+/yarfG/ugoL0rky/0tq9QmEydFMXjDSplSUb22OrRdFlqfXe0g==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.16.0.tgz", + "integrity": "sha512-Nh13xKZWW35C0dbOskD7OX01nQQavOzHbCw9XoZmar4eXCo7AvrYJ0jlUfRVVIJzqINxHlpECYLdmAdFsl9xDA==", + "license": "MIT", "dependencies": { - "escape-string-regexp": "2.0.0", + "escape-string-regexp": "^4.0.0", "invariant": "2.2.4" }, "peerDependencies": { @@ -13362,129 +11288,41 @@ "react-native": "*" } }, - "node_modules/react-native-webview/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/react-native/node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/react-native/node_modules/@types/yargs": { - "version": "15.0.19", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", - "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/react-native/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/react-native/node_modules/babel-plugin-syntax-hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.25.1.tgz", + "integrity": "sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ==", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "hermes-parser": "0.25.1" } }, - "node_modules/react-native/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "node_modules/react-native/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/react-native/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/react-native/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/react-native/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/react-native/node_modules/pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "dependencies": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": ">= 10" } }, - "node_modules/react-native/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/react-native/node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "node_modules/react-native/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/react-native/node_modules/ws": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "async-limiter": "~1.0.0" } }, "node_modules/react-redux": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.1.tgz", "integrity": "sha512-5W0QaKtEhj+3bC0Nj0NkqkhIv8gLADH/2kYFMTHxCVqQILiWzLv6MaLuV5wJU3BQEdHKzTfcvPN0WMS6SC1oyA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.1", "@types/hoist-non-react-statics": "^3.3.1", @@ -13522,12 +11360,14 @@ "node_modules/react-redux/node_modules/react-is": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" }, "node_modules/react-refresh": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz", - "integrity": "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==", + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13536,6 +11376,8 @@ "version": "16.15.0", "resolved": "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz", "integrity": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==", + "dev": true, + "license": "MIT", "dependencies": { "object-assign": "^4.1.1", "react-is": "^16.12.0 || ^17.0.0 || ^18.0.0" @@ -13545,29 +11387,43 @@ } }, "node_modules/react-test-renderer": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.2.0.tgz", - "integrity": "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.3.1.tgz", + "integrity": "sha512-KkAgygexHUkQqtvvx/otwxtuFu5cVjfzTCtjXLH9boS19/Nbtg84zS7wIQn39G8IlrhThBpQsMKkq5ZHZIYFXA==", "dev": true, + "license": "MIT", "dependencies": { - "react-is": "^18.2.0", + "react-is": "^18.3.1", "react-shallow-renderer": "^16.15.0", - "scheduler": "^0.23.0" + "scheduler": "^0.23.2" }, "peerDependencies": { - "react": "^18.2.0" + "react": "^18.3.1" } }, "node_modules/react-test-renderer/node_modules/react-is": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/react-test-renderer/node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "devOptional": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -13580,16 +11436,19 @@ "node_modules/readline": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", - "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + "integrity": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==", + "license": "BSD" }, "node_modules/recast": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", - "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "version": "0.23.11", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.11.tgz", + "integrity": "sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==", + "license": "MIT", "dependencies": { - "ast-types": "0.15.2", + "ast-types": "^0.16.1", "esprima": "~4.0.0", "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", "tslib": "^2.0.1" }, "engines": { @@ -13597,9 +11456,10 @@ } }, "node_modules/recyclerlistview": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/recyclerlistview/-/recyclerlistview-4.2.1.tgz", - "integrity": "sha512-NtVYjofwgUCt1rEsTp6jHQg/47TWjnO92TU2kTVgJ9wsc/ely4HnizHHa+f/dI7qaw4+zcSogElrLjhMltN2/g==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/recyclerlistview/-/recyclerlistview-4.2.3.tgz", + "integrity": "sha512-STR/wj/FyT8EMsBzzhZ1l2goYirMkIgfV3gYEPxI3Kf3lOnu6f7Dryhyw7/IkQrgX5xtTcDrZMqytvteH9rL3g==", + "license": "Apache-2.0", "dependencies": { "lodash.debounce": "4.0.8", "prop-types": "15.8.1", @@ -13614,23 +11474,26 @@ "version": "4.2.1", "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.9.2" } }, "node_modules/reflect.getprototypeof": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", "define-properties": "^1.2.1", - "es-abstract": "^1.23.1", + "es-abstract": "^1.23.9", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -13642,12 +11505,14 @@ "node_modules/regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" }, "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", + "license": "MIT", "dependencies": { "regenerate": "^1.4.2" }, @@ -13656,28 +11521,24 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dependencies": { - "@babel/runtime": "^7.8.4" - } + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "license": "MIT" }, "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bind": "^1.0.8", "define-properties": "^1.2.1", "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -13687,44 +11548,45 @@ } }, "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", + "license": "MIT", "dependencies": { - "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" + "unicode-match-property-value-ecmascript": "^2.2.1" }, "engines": { "node": ">=4" } }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "license": "MIT" + }, "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.0.tgz", + "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==", + "license": "BSD-2-Clause", "dependencies": { - "jsesc": "~0.5.0" + "jsesc": "~3.1.0" }, "bin": { "regjsparser": "bin/parser" } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "bin": { - "jsesc": "bin/jsesc" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13732,26 +11594,33 @@ "node_modules/require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "devOptional": true, + "license": "ISC" }, "node_modules/reselect": { "version": "4.1.8", "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -13761,6 +11630,7 @@ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, + "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" }, @@ -13772,16 +11642,17 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", + "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" } @@ -13790,6 +11661,8 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "devOptional": true, + "license": "MIT", "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -13799,10 +11672,11 @@ } }, "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "devOptional": true, + "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -13813,6 +11687,7 @@ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "deprecated": "Rimraf versions prior to v4 are no longer supported", + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -13823,31 +11698,11 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, + "devOptional": true, "funding": [ { "type": "github", @@ -13862,19 +11717,22 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", "isarray": "^2.0.5" }, "engines": { @@ -13885,19 +11743,53 @@ } }, "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "devOptional": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.6", + "call-bound": "^1.0.2", "es-errors": "^1.3.0", - "is-regex": "^1.1.4" + "is-regex": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -13907,25 +11799,41 @@ } }, "node_modules/scheduler": { - "version": "0.23.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "version": "0.24.0-canary-efb381bbf-20230505", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", + "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" } }, + "node_modules/selfsigned": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", + "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "license": "MIT", + "dependencies": { + "@types/node-forge": "^1.3.0", + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", + "license": "MIT", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -13949,6 +11857,7 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -13956,28 +11865,14 @@ "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, "node_modules/send/node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -13989,6 +11884,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -13997,34 +11893,48 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", + "license": "MIT", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "devOptional": true, + "license": "ISC" }, "node_modules/set-function-length": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -14042,6 +11952,7 @@ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, + "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -14052,15 +11963,32 @@ "node": ">= 0.4" } }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" }, "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", "dependencies": { "kind-of": "^6.0.2" }, @@ -14072,7 +12000,8 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, + "devOptional": true, + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -14084,29 +12013,92 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, + "devOptional": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz", + "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -14118,17 +12110,21 @@ "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "devOptional": true, + "license": "MIT" }, "node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", "engines": { "node": ">=8" } @@ -14137,6 +12133,8 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "devOptional": true, + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.0", "astral-regex": "^1.0.0", @@ -14146,10 +12144,51 @@ "node": ">=6" } }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -14159,6 +12198,7 @@ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -14168,6 +12208,7 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==", + "license": "MIT", "engines": { "node": ">=6" } @@ -14175,12 +12216,14 @@ "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" }, "node_modules/stack-utils": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -14192,6 +12235,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", "engines": { "node": ">=8" } @@ -14199,12 +12243,14 @@ "node_modules/stackframe": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "license": "MIT" }, "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.11.tgz", + "integrity": "sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==", + "license": "MIT", "dependencies": { "type-fest": "^0.7.1" }, @@ -14216,6 +12262,7 @@ "version": "0.7.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } @@ -14224,14 +12271,30 @@ "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/strict-uri-encode": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==", + "license": "MIT", "engines": { "node": ">=4" } @@ -14240,34 +12303,18 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "devOptional": true, + "license": "MIT", "dependencies": { "safe-buffer": "~5.2.0" } }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, + "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" @@ -14280,12 +12327,14 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -14295,32 +12344,26 @@ "node": ">=8" } }, - "node_modules/string-width/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "engines": { - "node": ">=8" - } - }, "node_modules/string.prototype.matchall": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", - "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", + "es-abstract": "^1.23.6", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "regexp.prototype.flags": "^1.5.2", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", "set-function-name": "^2.0.2", - "side-channel": "^1.0.6" + "side-channel": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -14334,21 +12377,26 @@ "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", "dev": true, + "license": "MIT", "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.5" } }, "node_modules/string.prototype.trim": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-object-atoms": "^1.0.0" + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -14358,15 +12406,20 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", - "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-object-atoms": "^1.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -14376,6 +12429,7 @@ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "define-properties": "^1.2.1", @@ -14392,6 +12446,7 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -14404,23 +12459,17 @@ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, + "devOptional": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -14430,6 +12479,7 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -14438,30 +12488,43 @@ } }, "node_modules/strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz", + "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==", + "devOptional": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "license": "MIT" }, "node_modules/sudo-prompt": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", - "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==" + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", + "devOptional": true, + "license": "MIT" }, "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -14469,34 +12532,14 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/temp": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz", - "integrity": "sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==", - "engines": [ - "node >=0.8.0" - ], - "dependencies": { - "os-tmpdir": "^1.0.0", - "rimraf": "~2.2.6" - } - }, - "node_modules/temp/node_modules/rimraf": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", - "integrity": "sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/terser": { - "version": "5.31.6", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", - "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", + "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", + "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -14510,12 +12553,14 @@ "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" }, "node_modules/terser/node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -14525,7 +12570,7 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, + "license": "ISC", "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", @@ -14535,91 +12580,45 @@ "node": ">=8" } }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/throat": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", - "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "license": "MIT" }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/tmp": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "license": "MIT", + "engines": { + "node": ">=14.14" } }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "license": "BSD-3-Clause" }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -14631,30 +12630,29 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", "engines": { "node": ">=0.6" } }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, "node_modules/ts-object-utils": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/ts-object-utils/-/ts-object-utils-0.0.5.tgz", - "integrity": "sha512-iV0GvHqOmilbIKJsfyfJY9/dNHCs969z3so90dQWsO1eMMozvTpnB1MEaUbb3FYtZTGjv5sIy/xmslEz0Rg2TA==" + "integrity": "sha512-iV0GvHqOmilbIKJsfyfJY9/dNHCs969z3so90dQWsO1eMMozvTpnB1MEaUbb3FYtZTGjv5sIy/xmslEz0Rg2TA==", + "license": "ISC" }, "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^1.8.1" }, @@ -14669,13 +12667,15 @@ "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true + "dev": true, + "license": "0BSD" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -14687,15 +12687,17 @@ "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -14704,30 +12706,32 @@ } }, "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" + "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" } }, "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -14737,17 +12741,19 @@ } }, "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", + "call-bind": "^1.0.8", "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" }, "engines": { "node": ">= 0.4" @@ -14757,17 +12763,18 @@ } }, "node_modules/typed-array-length": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", - "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", "dev": true, + "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-proto": "^1.0.3", "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" }, "engines": { "node": ">= 0.4" @@ -14781,6 +12788,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", "dev": true, + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -14789,51 +12797,36 @@ "node": ">=4.2.0" } }, - "node_modules/uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "deprecated": "support for ECMAScript is superseded by `uglify-js` as of v3.13.0", - "dependencies": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - }, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/uglify-es/node_modules/commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" - }, "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", + "call-bound": "^1.0.3", "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/undici-types": { - "version": "6.19.6", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.6.tgz", - "integrity": "sha512-e/vggGopEfTKSvj4ihnOLTsqhrKRN3LeO6qSN/GxohhuRv8qH9bNQ4B8W7e/vFL+0XTnmHPB4/kegunZGA4Org==" + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" }, "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "license": "MIT", "engines": { "node": ">=4" } @@ -14842,6 +12835,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" @@ -14851,17 +12845,19 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", + "license": "MIT", "engines": { "node": ">=4" } @@ -14870,6 +12866,8 @@ "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">= 4.0.0" } @@ -14878,14 +12876,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/update-browserslist-db": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", - "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", "funding": [ { "type": "opencollective", @@ -14900,9 +12899,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -14916,35 +12916,41 @@ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/use-latest-callback": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.1.tgz", - "integrity": "sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ==", + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/use-latest-callback/-/use-latest-callback-0.2.6.tgz", + "integrity": "sha512-FvRG9i1HSo0wagmX63Vrm8SnlUU3LMM3WyZkQ76RnslpBrX694AdG4A0zQBx2B3ZifFA0yv/BaEHGBnEax5rZg==", + "license": "MIT", "peerDependencies": { "react": ">=16.8" } }, "node_modules/use-sync-external-store": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", - "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", + "license": "MIT", "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "devOptional": true, + "license": "MIT" }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", "engines": { "node": ">= 0.4.0" } @@ -14954,6 +12960,7 @@ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", "dev": true, + "license": "ISC", "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", @@ -14967,6 +12974,8 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -14974,12 +12983,14 @@ "node_modules/vlq": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/vlq/-/vlq-1.0.1.tgz", - "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" + "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==", + "license": "MIT" }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" } @@ -14987,40 +12998,31 @@ "node_modules/warn-once": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz", - "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==" + "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==", + "license": "MIT" }, "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "devOptional": true, + "license": "MIT", "dependencies": { "defaults": "^1.0.3" } }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, "node_modules/whatwg-fetch": { "version": "3.6.20", "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.20.tgz", - "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } + "integrity": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==", + "license": "MIT" }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, + "devOptional": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -15032,39 +13034,45 @@ } }, "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", "dev": true, + "license": "MIT", "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/which-builtin-type": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.4.tgz", - "integrity": "sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", "dev": true, + "license": "MIT", "dependencies": { + "call-bound": "^1.0.2", "function.prototype.name": "^1.1.6", "has-tostringtag": "^1.0.2", "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", + "is-regex": "^1.2.1", "is-weakref": "^1.0.2", "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", + "which-boxed-primitive": "^1.1.0", "which-collection": "^1.0.2", - "which-typed-array": "^1.1.15" + "which-typed-array": "^1.1.16" }, "engines": { "node": ">= 0.4" @@ -15078,6 +13086,7 @@ "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", "dev": true, + "license": "MIT", "dependencies": { "is-map": "^2.0.3", "is-set": "^2.0.3", @@ -15094,18 +13103,23 @@ "node_modules/which-module": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "devOptional": true, + "license": "ISC" }, "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "version": "1.1.19", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", + "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", "dev": true, + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "for-each": "^0.3.5", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", "has-tostringtag": "^1.0.2" }, "engines": { @@ -15120,6 +13134,7 @@ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -15128,6 +13143,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -15140,46 +13156,17 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" }, "node_modules/write-file-atomic": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, + "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^3.0.7" @@ -15189,25 +13176,31 @@ } }, "node_modules/ws": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", - "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", - "dependencies": { - "async-limiter": "~1.0.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", + "license": "MIT", "engines": { - "node": ">=0.4" + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", "engines": { "node": ">=10" } @@ -15215,12 +13208,27 @@ "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", + "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==", + "devOptional": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + } }, "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -15238,6 +13246,7 @@ "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", "engines": { "node": ">=12" } @@ -15246,6 +13255,8 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "devOptional": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -15254,20 +13265,18 @@ } }, "node_modules/zustand": { - "version": "4.5.5", - "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.5.tgz", - "integrity": "sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==", - "peer": true, - "dependencies": { - "use-sync-external-store": "1.2.2" - }, + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.8.tgz", + "integrity": "sha512-gyPKpIaxY9XcO2vSMrLbiER7QMAMGOQZVRdJ6Zi782jkbzZygq5GI9nG8g+sMgitRtndwaBSl7uiqC49o1SSiw==", + "license": "MIT", "engines": { - "node": ">=12.7.0" + "node": ">=12.20.0" }, "peerDependencies": { - "@types/react": ">=16.8", + "@types/react": ">=18.0.0", "immer": ">=9.0.6", - "react": ">=16.8" + "react": ">=18.0.0", + "use-sync-external-store": ">=1.2.0" }, "peerDependenciesMeta": { "@types/react": { @@ -15278,6 +13287,9 @@ }, "react": { "optional": true + }, + "use-sync-external-store": { + "optional": true } } } diff --git a/packages/react-native-room-kit/example/package.json b/packages/react-native-room-kit/example/package.json index 9b4a37d1f..80bca7634 100644 --- a/packages/react-native-room-kit/example/package.json +++ b/packages/react-native-room-kit/example/package.json @@ -1,60 +1,70 @@ { "name": "RNExample", - "version": "1.2.3", + "version": "1.3.0", "private": true, "scripts": { "android": "react-native run-android", "ios": "react-native run-ios", "start": "react-native start", "test": "jest", - "lint": "eslint . --ext .js,.jsx,.ts,.tsx" + "lint": "eslint . --ext .js,.jsx,.ts,.tsx", + "postinstall": "patch-package" }, "dependencies": { - "@100mslive/react-native-video-plugin": "1.0.0", - "@react-native-async-storage/async-storage": "1.17.11", - "@react-native-community/blur": "^4.3.2", - "@react-native-masked-view/masked-view": "^0.2.9", - "@react-navigation/native": "6.1.7", - "@react-navigation/native-stack": "6.5.0", - "@shopify/flash-list": "^1.4.3", - "lottie-react-native": "^6.7.2", - "react": "18.2.0", - "react-native": "0.71.19", - "react-native-camera": "4.2.1", - "react-native-device-info": "11.1.0", - "react-native-gesture-handler": "2.15.0", + "@100mslive/react-native-video-plugin": "file:/Users/yogesh/Programming/react-native-video-plugin", + "@100mslive/types-prebuilt": "^0.12.12", + "@react-native-async-storage/async-storage": "1.24.0", + "@react-native-community/blur": "^4.4.1", + "@react-native-masked-view/masked-view": "^0.3.2", + "@react-navigation/native": "6.1.18", + "@react-navigation/native-stack": "6.11.0", + "@shopify/flash-list": "^1.7.1", + "lottie-react-native": "^7.3.4", + "react": "18.3.1", + "react-native": "0.77.3", + "react-native-device-info": "14.0.0", + "react-native-gesture-handler": "~2.22.0", "react-native-image-picker": "^7.1.2", - "react-native-linear-gradient": "^2.7.3", + "react-native-linear-gradient": "^2.8.3", "react-native-lottie-splash-screen": "github:ygit/react-native-lottie-splash-screen#master", "react-native-modal": "^13.0.1", - "react-native-permissions": "3.4.0", - "react-native-qrcode-scanner": "1.5.5", - "react-native-reanimated": "3.4.2", - "react-native-safe-area-context": "3.3.0", - "react-native-screens": "3.25.0", + "react-native-permissions": "4.1.5", + "react-native-reanimated": "3.16.7", + "react-native-safe-area-context": "^5.6.1", + "react-native-screens": "^4.18.0", "react-native-simple-toast": "1.1.3", - "react-native-webview": "^13.8.7", + "react-native-vision-camera": "^4.7.2", + "react-native-webview": "^13.12.3", "react-redux": "8.1.1", - "redux": "4.2.1" + "redux": "4.2.1", + "zustand": "^5.0.8" }, "devDependencies": { "@babel/core": "^7.20.0", + "@babel/plugin-transform-private-methods": "^7.27.1", "@babel/preset-env": "^7.20.0", - "@babel/runtime": "^7.20.0", + "@babel/runtime": "^7.28.4", + "@react-native-community/cli": "15.1.3", + "@react-native-community/cli-platform-android": "15.1.3", + "@react-native-community/cli-platform-ios": "15.1.3", "@react-native-community/eslint-config": "^3.2.0", + "@react-native/babel-preset": "0.77.3", + "@react-native/metro-config": "0.77.3", "@tsconfig/react-native": "^2.0.2", "@types/jest": "^29.2.1", "@types/react": "^18.3.12", "@types/react-test-renderer": "^18.0.0", + "@typescript-eslint/parser": "^5.7.0", "babel-jest": "^29.2.1", + "babel-plugin-module-resolver": "^5.0.0", + "babel-plugin-syntax-hermes-parser": "^0.32.1", "eslint": "^8.19.0", "jest": "^29.2.1", - "metro-react-native-babel-preset": "0.73.10", + "metro-react-native-babel-preset": "0.77.0", + "patch-package": "^8.0.1", "prettier": "^2.4.1", - "react-test-renderer": "18.2.0", - "typescript": "4.8.4", - "@typescript-eslint/parser": "^5.7.0", - "babel-plugin-module-resolver": "^5.0.0" + "react-test-renderer": "18.3.1", + "typescript": "4.8.4" }, "resolutions": { "@types/react": "^18" diff --git a/packages/react-native-room-kit/example/patches/react-native-linear-gradient+2.8.3.patch b/packages/react-native-room-kit/example/patches/react-native-linear-gradient+2.8.3.patch new file mode 100644 index 000000000..03b053286 --- /dev/null +++ b/packages/react-native-room-kit/example/patches/react-native-linear-gradient+2.8.3.patch @@ -0,0 +1,14 @@ +diff --git a/node_modules/react-native-linear-gradient/android/build.gradle b/node_modules/react-native-linear-gradient/android/build.gradle +index e3aacde..cbaaa02 100644 +--- a/node_modules/react-native-linear-gradient/android/build.gradle ++++ b/node_modules/react-native-linear-gradient/android/build.gradle +@@ -21,6 +21,9 @@ apply plugin: 'com.android.library' + + android { + compileSdkVersion safeExtGet('compileSdkVersion', 31).toInteger() ++ ++ namespace "com.BV.LinearGradient" ++ + defaultConfig { + minSdkVersion safeExtGet('minSdkVersion', 21) + targetSdkVersion safeExtGet('targetSdkVersion', 31) diff --git a/packages/react-native-room-kit/example/patches/react-native-modal+13.0.1.patch b/packages/react-native-room-kit/example/patches/react-native-modal+13.0.1.patch new file mode 100644 index 000000000..6d22a4c23 --- /dev/null +++ b/packages/react-native-room-kit/example/patches/react-native-modal+13.0.1.patch @@ -0,0 +1,19 @@ +diff --git a/node_modules/react-native-modal/dist/modal.js b/node_modules/react-native-modal/dist/modal.js +index 80f4e75..74a1f50 100644 +--- a/node_modules/react-native-modal/dist/modal.js ++++ b/node_modules/react-native-modal/dist/modal.js +@@ -453,10 +453,12 @@ export class ReactNativeModal extends React.Component { + if (this.state.isVisible) { + this.open(); + } +- BackHandler.addEventListener('hardwareBackPress', this.onBackButtonPress); ++ this.backHandlerSubscription = BackHandler.addEventListener('hardwareBackPress', this.onBackButtonPress); + } + componentWillUnmount() { +- BackHandler.removeEventListener('hardwareBackPress', this.onBackButtonPress); ++ if (this.backHandlerSubscription) { ++ this.backHandlerSubscription.remove(); ++ } + if (this.didUpdateDimensionsEmitter) { + this.didUpdateDimensionsEmitter.remove(); + } diff --git a/packages/react-native-room-kit/example/patches/react-native-reanimated+3.16.7.patch b/packages/react-native-room-kit/example/patches/react-native-reanimated+3.16.7.patch new file mode 100644 index 000000000..cfb17a20c --- /dev/null +++ b/packages/react-native-room-kit/example/patches/react-native-reanimated+3.16.7.patch @@ -0,0 +1,25188 @@ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/cache-v2-b467bbae9045208bc237.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/cache-v2-b467bbae9045208bc237.json +new file mode 100644 +index 0000000..2a34b84 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/cache-v2-b467bbae9045208bc237.json +@@ -0,0 +1,1547 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "ANDROID_TOOLCHAIN", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "clang" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "Reanimated" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Wl,-z,max-page-size=16384" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "HERMES_ENABLE_DEBUGGER", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "1" ++ }, ++ { ++ "name" : "IS_NEW_ARCHITECTURE_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "IS_REANIMATED_EXAMPLE_APP", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "JS_RUNTIME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "hermes" ++ }, ++ { ++ "name" : "JS_RUNTIME_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes" ++ }, ++ { ++ "name" : "REACT_NATIVE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native" ++ }, ++ { ++ "name" : "REACT_NATIVE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "77" ++ }, ++ { ++ "name" : "REANIMATED_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "3.16.7" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "Reanimated_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a" ++ }, ++ { ++ "name" : "Reanimated_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "Reanimated_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni" ++ }, ++ { ++ "name" : "hermes-engine_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for hermes-engine." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine" ++ }, ++ { ++ "name" : "reanimated_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;worklets;general;ReactAndroid::reactnative;" ++ }, ++ { ++ "name" : "worklets_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative;general;hermes-engine::libhermes;general;ReactAndroid::hermestooling;" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-d9170dc005e16975025b.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-d9170dc005e16975025b.json +new file mode 100644 +index 0000000..7bdcb27 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-d9170dc005e16975025b.json +@@ -0,0 +1,837 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" ++ }, ++ { ++ "path" : "src/main/cpp/worklets/CMakeLists.txt" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake" ++ }, ++ { ++ "path" : "src/main/cpp/reanimated/CMakeLists.txt" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-aff7b89be6be8855b283.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-aff7b89be6be8855b283.json +new file mode 100644 +index 0000000..484ed74 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-aff7b89be6be8855b283.json +@@ -0,0 +1,101 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "childIndexes" : ++ [ ++ 1, ++ 2 ++ ], ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.13" ++ }, ++ "projectIndex" : 0, ++ "source" : "." ++ }, ++ { ++ "build" : "src/main/cpp/worklets", ++ "jsonFile" : "directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.8" ++ }, ++ "parentIndex" : 0, ++ "projectIndex" : 0, ++ "source" : "src/main/cpp/worklets", ++ "targetIndexes" : ++ [ ++ 1 ++ ] ++ }, ++ { ++ "build" : "src/main/cpp/reanimated", ++ "jsonFile" : "directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.8" ++ }, ++ "parentIndex" : 0, ++ "projectIndex" : 0, ++ "source" : "src/main/cpp/reanimated", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0, ++ 1, ++ 2 ++ ], ++ "name" : "Reanimated", ++ "targetIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 2, ++ "id" : "reanimated::@89a6a9b85fb42923616c", ++ "jsonFile" : "target-reanimated-Debug-9c3a791bf35c10d056b8.json", ++ "name" : "reanimated", ++ "projectIndex" : 0 ++ }, ++ { ++ "directoryIndex" : 1, ++ "id" : "worklets::@a0394df2d94e5212d8bd", ++ "jsonFile" : "target-worklets-Debug-ccbccf7cc908c775bbee.json", ++ "name" : "worklets", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json +new file mode 100644 +index 0000000..3893e12 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : "src/main/cpp/reanimated", ++ "source" : "src/main/cpp/reanimated" ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json +new file mode 100644 +index 0000000..0d29bfc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : "src/main/cpp/worklets", ++ "source" : "src/main/cpp/worklets" ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-12-0004.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-12-0004.json +new file mode 100644 +index 0000000..e110e85 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-12-0004.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-aff7b89be6be8855b283.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-b467bbae9045208bc237.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-d9170dc005e16975025b.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-b467bbae9045208bc237.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-d9170dc005e16975025b.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-aff7b89be6be8855b283.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-9c3a791bf35c10d056b8.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-9c3a791bf35c10d056b8.json +new file mode 100644 +index 0000000..59b125f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/target-reanimated-Debug-9c3a791bf35c10d056b8.json +@@ -0,0 +1,424 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "src/main/cpp/reanimated/CMakeLists.txt", ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 8, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 42, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 48, ++ "parent" : 0 ++ }, ++ { ++ "file" : 1 ++ }, ++ { ++ "command" : 2, ++ "file" : 1, ++ "line" : 15, ++ "parent" : 4 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ }, ++ { ++ "fragment" : "-std=gnu++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "reanimated_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "dependencies" : ++ [ ++ { ++ "backtrace" : 2, ++ "id" : "worklets::@a0394df2d94e5212d8bd" ++ } ++ ], ++ "id" : "reanimated::@89a6a9b85fb42923616c", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-llog", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "reanimated", ++ "nameOnDisk" : "libreanimated.so", ++ "paths" : ++ { ++ "build" : "src/main/cpp/reanimated", ++ "source" : "src/main/cpp/reanimated" ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/AndroidUIScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/JNIHelper.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/LayoutAnimations.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/OnLoad.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/PlatformLogger.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/target-worklets-Debug-ccbccf7cc908c775bbee.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/target-worklets-Debug-ccbccf7cc908c775bbee.json +new file mode 100644 +index 0000000..a59e5a5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.cmake/api/v1/reply/target-worklets-Debug-ccbccf7cc908c775bbee.json +@@ -0,0 +1,383 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "src/main/cpp/worklets/CMakeLists.txt", ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 13, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 62, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 70, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 84, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 91, ++ "parent" : 0 ++ }, ++ { ++ "file" : 1 ++ }, ++ { ++ "command" : 2, ++ "file" : 1, ++ "line" : 15, ++ "parent" : 6 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 20, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ }, ++ { ++ "fragment" : "-std=gnu++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "worklets_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 8, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp" ++ }, ++ { ++ "backtrace" : 9, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 9, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 9, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 3, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ }, ++ { ++ "backtrace" : 4, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include" ++ }, ++ { ++ "backtrace" : 5, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "worklets::@a0394df2d94e5212d8bd", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-llog", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "worklets", ++ "nameOnDisk" : "libworklets.so", ++ "paths" : ++ { ++ "build" : "src/main/cpp/worklets", ++ "source" : "src/main/cpp/worklets" ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.ninja_deps b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.ninja_deps +new file mode 100644 +index 0000000..ae44c9a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.ninja_deps differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.ninja_log b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.ninja_log +new file mode 100644 +index 0000000..5bd40f7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/.ninja_log +@@ -0,0 +1,39 @@ ++# ninja log v5 ++3 44 0 /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs e8087ba86718ca4f ++2 3588 1761328155716322083 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o 173c909479c109ae ++2 3850 1761328155979593613 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o 5d2c59b0650e56e0 ++2 4378 1761328156500365219 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o d1ba431657479594 ++3 4430 1761328156557832627 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o 5d18afef8978a07f ++2 4541 1761328156652030984 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o f1c088742812af75 ++2 4736 1761328156866836318 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o f68f606b12c71754 ++2 4745 1761328156874488575 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o 9950439cb97982e3 ++4745 4781 1761328156916262375 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o 24b04d7435496840 ++4781 4818 1761328156952341265 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o 2e719201d10bdba5 ++4818 4850 1761328156983378929 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o b77b75185be504a8 ++4851 4881 1761328157015409997 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b7f76d296bccb441 ++1 5977 1761328158100845776 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o 4226197f47f7d16e ++5977 6011 1761328158145632411 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o 5bfa8bc9afe7f34d ++6011 6048 1761328158183049338 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 1d8e353a6b11967b ++2 6061 1761328158186334972 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o 5dc18abd032d706d ++3595 6505 1761328158633890727 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o 15cbbbbfaceee372 ++4378 6914 1761328159022592494 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o 903f229e18c4afd0 ++3852 7406 1761328159533056476 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o c68f08886bf47aa8 ++2 7586 1761328159706022216 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o 634db4093b3590c6 ++4736 8433 1761328160528001835 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o f4953fe0b02f2339 ++7586 8694 1761328160774865612 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o b06f06814214216f ++4430 9308 1761328161398464693 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o 8d7085c6c5394c35 ++6061 9701 1761328161829588819 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o 65816d5b9f54fd0f ++4881 9879 1761328162005141632 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o 22f29d51aac4aaa0 ++6506 10468 1761328162596393720 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o 692806b29ba4456a ++4541 10657 1761328162725476351 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o 3e7ffc220dd1a228 ++6914 10690 1761328162811571105 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o c47e0bf0db71434 ++10657 10770 1761328162887880210 ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so 1678f8dab3b25506 ++10468 11326 1761328163458207543 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o d94bd3e1cd6b467b ++7406 12402 1761328164508285745 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o 7b831770a215750d ++8694 12628 1761328164753711314 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o adfa83535a1948ae ++8434 12656 1761328164779101695 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o d70759babc2f8af4 ++6048 12742 1761328164855429008 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o 4c7e7497dca5a698 ++9309 12857 1761328164983422109 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o e1dce2116047a63a ++9879 13340 1761328165465822677 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o d3ca83a6d0ff945a ++9701 14932 1761328167043583512 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o 3bbac85b806a9d9d ++14932 15005 1761328167123075206 ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so c41d1c53195de997 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeCache.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeCache.txt +new file mode 100644 +index 0000000..0784e50 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeCache.txt +@@ -0,0 +1,444 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++ANDROID_TOOLCHAIN:UNINITIALIZED=clang ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=Reanimated ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-z,max-page-size=16384 ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++HERMES_ENABLE_DEBUGGER:UNINITIALIZED=1 ++ ++//No help, variable specified on the command line. ++IS_NEW_ARCHITECTURE_ENABLED:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++IS_REANIMATED_EXAMPLE_APP:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++JS_RUNTIME:UNINITIALIZED=hermes ++ ++//No help, variable specified on the command line. ++JS_RUNTIME_DIR:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_DIR:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=77 ++ ++//No help, variable specified on the command line. ++REANIMATED_VERSION:UNINITIALIZED=3.16.7 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++Reanimated_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ ++//Value Computed by CMake ++Reanimated_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++Reanimated_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni ++ ++//The directory containing a CMake configuration file for hermes-engine. ++hermes-engine_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine ++ ++//Dependencies for the target ++reanimated_LIB_DEPENDS:STATIC=general;worklets;general;ReactAndroid::reactnative; ++ ++//Dependencies for the target ++worklets_LIB_DEPENDS:STATIC=general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative;general;hermes-engine::libhermes;general;ReactAndroid::hermestooling; ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++CMAKE_EXPORT_COMPILE_COMMANDS:INTERNAL=ON ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=3 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..371cbf0 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..ede016e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..1c61f7e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..bf53b59 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..e6fd81c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "aarch64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..3798766 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..9ed185b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..08c10ae +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,264 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_84d3a && [1/2] Building C object CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_84d3a ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_84d3a /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_84d3a && [1/2] Building C object CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_84d3a] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_84d3a /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_84d3a] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_84d3a.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_e6125 && [1/2] Building CXX object CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_e6125 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_e6125 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_e6125 && [1/2] Building CXX object CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_e6125] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_e6125 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_e6125] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_e6125.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..f595bff +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,8 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/rebuild_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/rebuild_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake +new file mode 100644 +index 0000000..52f34ec +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake +@@ -0,0 +1,65 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by CMake Version 3.22 ++cmake_policy(SET CMP0009 NEW) ++ ++# REANIMATED_COMMON_CPP_SOURCES at src/main/cpp/reanimated/CMakeLists.txt:3 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/PropsRegistry.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/FeaturesConfig.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# WORKLETS_COMMON_CPP_SOURCES at src/main/cpp/worklets/CMakeLists.txt:3 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/*.cpp") ++set(OLD_GLOB ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Registries/EventHandlerRegistry.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/SharedItems/Shareables.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/AsyncQueue.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/JSISerializer.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/JSLogger.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/JSScheduler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/ReanimatedVersion.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/UIScheduler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/WorkletEventHandler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# REANIMATED_ANDROID_CPP_SOURCES at src/main/cpp/reanimated/CMakeLists.txt:4 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs") ++endif() +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs +new file mode 100644 +index 0000000..2b38fac +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs +@@ -0,0 +1 @@ ++# This file is generated by CMake for checking of the VerifyGlobs.cmake file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..cd14af4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,92 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__worklets_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__worklets_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__reanimated_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__reanimated_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for re-checking globbed directories. ++ ++rule VERIFY_GLOBS ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake ++ description = Re-checking globbed directories... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/additional_project_files.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..3fb1859 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,67 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "reanimated::@89a6a9b85fb42923616c": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "reanimated", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ ] ++ }, ++ "worklets::@a0394df2d94e5212d8bd": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "worklets", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..06705ef +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,55 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "worklets::@a0394df2d94e5212d8bd": { ++ "artifactName": "worklets", ++ "abi": "arm64-v8a", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ ] ++ }, ++ "reanimated::@89a6a9b85fb42923616c": { ++ "artifactName": "reanimated", ++ "abi": "arm64-v8a", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..995c1c5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build.ninja +@@ -0,0 +1,616 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.8 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt ++# ============================================================================= ++ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target worklets ++ ++ ++############################################# ++# Order-only phony target for worklets ++ ++build cmake_object_order_depends_target_worklets: phony || src/main/cpp/worklets/CMakeFiles/worklets.dir ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target worklets ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so ++ ++build ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so: CXX_SHARED_LIBRARY_LINKER__worklets_Debug src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = -llog /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so -latomic -lm ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libworklets.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build src/main/cpp/worklets/CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/worklets/edit_cache: phony src/main/cpp/worklets/CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build src/main/cpp/worklets/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/worklets/rebuild_cache: phony src/main/cpp/worklets/CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt ++# ============================================================================= ++ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Order-only phony target for reanimated ++ ++build cmake_object_order_depends_target_reanimated: phony || cmake_object_order_depends_target_worklets ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so ++ ++build ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so: CXX_SHARED_LIBRARY_LINKER__reanimated_Debug src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o | ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so || ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so -llog /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so -latomic -lm ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libreanimated.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build src/main/cpp/reanimated/CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/reanimated/edit_cache: phony src/main/cpp/reanimated/CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build src/main/cpp/reanimated/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/reanimated/rebuild_cache: phony src/main/cpp/reanimated/CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build libreanimated.so: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so ++ ++build libworklets.so: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so ++ ++build reanimated: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so ++ ++build worklets: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++ ++build all: phony src/main/cpp/worklets/all src/main/cpp/reanimated/all ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated ++ ++build src/main/cpp/reanimated/all: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets ++ ++build src/main/cpp/worklets/all: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Phony target to force glob verification run. ++ ++build /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force: phony ++ ++ ++############################################# ++# Re-run CMake to check if globbed directories changed. ++ ++build /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake_force ++ pool = console ++ restat = 1 ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/cmake.verify_globs | ../../../../CMakeLists.txt ../../../../src/main/cpp/reanimated/CMakeLists.txt ../../../../src/main/cpp/worklets/CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../../../../src/main/cpp/reanimated/CMakeLists.txt ../../../../src/main/cpp/worklets/CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/CMakeFiles/VerifyGlobs.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build_file_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..9a792dc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build_file_index.txt +@@ -0,0 +1,9 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/CMakeLists.txt ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..6479fea +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,61 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(NOT CMAKE_INSTALL_LOCAL_ONLY) ++ # Include the install script for each subdirectory. ++ include("/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/cmake_install.cmake") ++ include("/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/cmake_install.cmake") ++ ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..26ee16b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json +@@ -0,0 +1,177 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..f8f227b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..fd181a2 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,29 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build.json  ں30 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build_mini.json  ں3- ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build.ninja  ں3ܗ ++ ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build.ninja.txt  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/build_file_index.txt  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json.bin  ں3 ߅ ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/metadata_generation_command.txt  ں3 ++ ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/prefab_config.json  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/symbol_folder_index.txt  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt  ں3  3 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..a429e0c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,31 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=arm64-v8a ++-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a ++-GNinja ++-DANDROID_STL=c++_shared ++-DREACT_NATIVE_MINOR_VERSION=77 ++-DANDROID_TOOLCHAIN=clang ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 ++-DREACT_NATIVE_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native ++-DJS_RUNTIME=hermes ++-DJS_RUNTIME_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes ++-DIS_NEW_ARCHITECTURE_ENABLED=false ++-DIS_REANIMATED_EXAMPLE_APP=false ++-DREANIMATED_VERSION=3.16.7 ++-DHERMES_ENABLE_DEBUGGER=1 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/prefab_config.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..871560d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o +new file mode 100644 +index 0000000..854ae1f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o +new file mode 100644 +index 0000000..9e750d9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o +new file mode 100644 +index 0000000..ed303b7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o +new file mode 100644 +index 0000000..c2bbca1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o +new file mode 100644 +index 0000000..38425c5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o +new file mode 100644 +index 0000000..1d5f4a3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o +new file mode 100644 +index 0000000..4fc4eb4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o +new file mode 100644 +index 0000000..8e6714c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o +new file mode 100644 +index 0000000..0e461f7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o +new file mode 100644 +index 0000000..ad07a2e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..92d338b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..2a464fd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..81e2af5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o +new file mode 100644 +index 0000000..e89d2e0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o +new file mode 100644 +index 0000000..115e376 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o +new file mode 100644 +index 0000000..8762eec +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o +new file mode 100644 +index 0000000..bb1754c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o +new file mode 100644 +index 0000000..8c6a38b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o +new file mode 100644 +index 0000000..21c21a4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o +new file mode 100644 +index 0000000..7307293 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/cmake_install.cmake +new file mode 100644 +index 0000000..349e0c4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/reanimated/cmake_install.cmake +@@ -0,0 +1,44 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o +new file mode 100644 +index 0000000..76406e1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o +new file mode 100644 +index 0000000..8de2719 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o +new file mode 100644 +index 0000000..dc35277 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o +new file mode 100644 +index 0000000..8c01d80 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o +new file mode 100644 +index 0000000..f9a5a26 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o +new file mode 100644 +index 0000000..e595c5f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o +new file mode 100644 +index 0000000..dbf4606 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o +new file mode 100644 +index 0000000..a7f431c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o +new file mode 100644 +index 0000000..23636a8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o +new file mode 100644 +index 0000000..2d3129e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o +new file mode 100644 +index 0000000..e69c8ab +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o +new file mode 100644 +index 0000000..547f2c7 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o +new file mode 100644 +index 0000000..bf7148f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o +new file mode 100644 +index 0000000..1c350c0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..a593a0d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/cmake_install.cmake +new file mode 100644 +index 0000000..7909ef7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/src/main/cpp/worklets/cmake_install.cmake +@@ -0,0 +1,44 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..dc89c2f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/hash_key.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/hash_key.txt +new file mode 100644 +index 0000000..61af5b8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/hash_key.txt +@@ -0,0 +1,38 @@ ++# Values used to calculate the hash in this folder name. ++# Should not depend on the absolute path of the project itself. ++# - AGP: 8.7.2. ++# - $NDK is the path to NDK 27.1.12297006. ++# - $PROJECT is the path to the parent folder of the root Gradle build file. ++# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. ++# - $HASH is the hash value computed from this text. ++# - $CMAKE is the path to CMake 3.22.1. ++# - $NINJA is the path to Ninja. ++-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DREACT_NATIVE_MINOR_VERSION=77 ++-DANDROID_TOOLCHAIN=clang ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 ++-DREACT_NATIVE_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native ++-DJS_RUNTIME=hermes ++-DJS_RUNTIME_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes ++-DIS_NEW_ARCHITECTURE_ENABLED=false ++-DIS_REANIMATED_EXAMPLE_APP=false ++-DREANIMATED_VERSION=3.16.7 ++-DHERMES_ENABLE_DEBUGGER=1 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ef54dbf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.arm64-v8a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..bf3d9fa +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +new file mode 100644 +index 0000000..213110e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET hermes-engine::libhermes) ++add_library(hermes-engine::libhermes SHARED IMPORTED) ++set_target_properties(hermes-engine::libhermes PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.arm64-v8a/libhermes.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ebd75a4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.x86_64/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..cb56213 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +new file mode 100644 +index 0000000..c234db7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET hermes-engine::libhermes) ++add_library(hermes-engine::libhermes SHARED IMPORTED) ++set_target_properties(hermes-engine::libhermes PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/cache-v2-10d9336cf8b5469dfbba.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/cache-v2-10d9336cf8b5469dfbba.json +new file mode 100644 +index 0000000..4e82df9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/cache-v2-10d9336cf8b5469dfbba.json +@@ -0,0 +1,1547 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "ANDROID_TOOLCHAIN", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "clang" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "Reanimated" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Wl,-z,max-page-size=16384" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "HERMES_ENABLE_DEBUGGER", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "1" ++ }, ++ { ++ "name" : "IS_NEW_ARCHITECTURE_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "IS_REANIMATED_EXAMPLE_APP", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "JS_RUNTIME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "hermes" ++ }, ++ { ++ "name" : "JS_RUNTIME_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes" ++ }, ++ { ++ "name" : "REACT_NATIVE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native" ++ }, ++ { ++ "name" : "REACT_NATIVE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "77" ++ }, ++ { ++ "name" : "REANIMATED_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "3.16.7" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "Reanimated_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64" ++ }, ++ { ++ "name" : "Reanimated_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "Reanimated_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni" ++ }, ++ { ++ "name" : "hermes-engine_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for hermes-engine." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine" ++ }, ++ { ++ "name" : "reanimated_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;worklets;general;ReactAndroid::reactnative;" ++ }, ++ { ++ "name" : "worklets_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative;general;hermes-engine::libhermes;general;ReactAndroid::hermestooling;" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-5de9189a3b0f9422e67a.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-5de9189a3b0f9422e67a.json +new file mode 100644 +index 0000000..da4aad4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-5de9189a3b0f9422e67a.json +@@ -0,0 +1,837 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake" ++ }, ++ { ++ "path" : "src/main/cpp/worklets/CMakeLists.txt" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake" ++ }, ++ { ++ "path" : "src/main/cpp/reanimated/CMakeLists.txt" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/codemodel-v2-f14daa23d6f5dc2f1dda.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/codemodel-v2-f14daa23d6f5dc2f1dda.json +new file mode 100644 +index 0000000..4b2bb59 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/codemodel-v2-f14daa23d6f5dc2f1dda.json +@@ -0,0 +1,101 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "childIndexes" : ++ [ ++ 1, ++ 2 ++ ], ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.13" ++ }, ++ "projectIndex" : 0, ++ "source" : "." ++ }, ++ { ++ "build" : "src/main/cpp/worklets", ++ "jsonFile" : "directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.8" ++ }, ++ "parentIndex" : 0, ++ "projectIndex" : 0, ++ "source" : "src/main/cpp/worklets", ++ "targetIndexes" : ++ [ ++ 1 ++ ] ++ }, ++ { ++ "build" : "src/main/cpp/reanimated", ++ "jsonFile" : "directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.8" ++ }, ++ "parentIndex" : 0, ++ "projectIndex" : 0, ++ "source" : "src/main/cpp/reanimated", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0, ++ 1, ++ 2 ++ ], ++ "name" : "Reanimated", ++ "targetIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 2, ++ "id" : "reanimated::@89a6a9b85fb42923616c", ++ "jsonFile" : "target-reanimated-Debug-9bdc7dd26d1396544453.json", ++ "name" : "reanimated", ++ "projectIndex" : 0 ++ }, ++ { ++ "directoryIndex" : 1, ++ "id" : "worklets::@a0394df2d94e5212d8bd", ++ "jsonFile" : "target-worklets-Debug-d15c237d799c0a780d02.json", ++ "name" : "worklets", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json +new file mode 100644 +index 0000000..3893e12 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-src.main.cpp.reanimated-Debug-02a55322cec7fc692a79.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : "src/main/cpp/reanimated", ++ "source" : "src/main/cpp/reanimated" ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json +new file mode 100644 +index 0000000..0d29bfc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/directory-src.main.cpp.worklets-Debug-ece67eb1fd05b0a42e53.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : "src/main/cpp/worklets", ++ "source" : "src/main/cpp/worklets" ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-28-0427.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-28-0427.json +new file mode 100644 +index 0000000..689138e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-28-0427.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-f14daa23d6f5dc2f1dda.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-10d9336cf8b5469dfbba.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-5de9189a3b0f9422e67a.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-10d9336cf8b5469dfbba.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-5de9189a3b0f9422e67a.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-f14daa23d6f5dc2f1dda.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-9bdc7dd26d1396544453.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-9bdc7dd26d1396544453.json +new file mode 100644 +index 0000000..91175f4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/target-reanimated-Debug-9bdc7dd26d1396544453.json +@@ -0,0 +1,424 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "src/main/cpp/reanimated/CMakeLists.txt", ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 8, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 42, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 48, ++ "parent" : 0 ++ }, ++ { ++ "file" : 1 ++ }, ++ { ++ "command" : 2, ++ "file" : 1, ++ "line" : 15, ++ "parent" : 4 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ }, ++ { ++ "fragment" : "-std=gnu++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "reanimated_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 6, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "dependencies" : ++ [ ++ { ++ "backtrace" : 2, ++ "id" : "worklets::@a0394df2d94e5212d8bd" ++ } ++ ], ++ "id" : "reanimated::@89a6a9b85fb42923616c", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-llog", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "reanimated", ++ "nameOnDisk" : "libreanimated.so", ++ "paths" : ++ { ++ "build" : "src/main/cpp/reanimated", ++ "source" : "src/main/cpp/reanimated" ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14, ++ 15, ++ 16, ++ 17, ++ 18, ++ 19 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/AndroidUIScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/JNIHelper.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/LayoutAnimations.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/OnLoad.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/reanimated/android/PlatformLogger.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/target-worklets-Debug-d15c237d799c0a780d02.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/target-worklets-Debug-d15c237d799c0a780d02.json +new file mode 100644 +index 0000000..5085c2b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.cmake/api/v1/reply/target-worklets-Debug-d15c237d799c0a780d02.json +@@ -0,0 +1,383 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_compile_options", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "src/main/cpp/worklets/CMakeLists.txt", ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 13, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 62, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 70, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 84, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 91, ++ "parent" : 0 ++ }, ++ { ++ "file" : 1 ++ }, ++ { ++ "command" : 2, ++ "file" : 1, ++ "line" : 15, ++ "parent" : 6 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 20, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_NO_CONFIG=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_CLOCK_GETTIME=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_USE_LIBCPP=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_CFG_NO_COROUTINES=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_MOBILE=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_RECVMMSG=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_PTHREAD=1" ++ }, ++ { ++ "backtrace" : 7, ++ "fragment" : "-DFOLLY_HAVE_XSI_STRERROR_R=1" ++ }, ++ { ++ "fragment" : "-std=gnu++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "define" : "worklets_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 8, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp" ++ }, ++ { ++ "backtrace" : 9, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 9, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 9, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 3, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ }, ++ { ++ "backtrace" : 4, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include" ++ }, ++ { ++ "backtrace" : 5, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "worklets::@a0394df2d94e5212d8bd", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-llog", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 4, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 5, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "worklets", ++ "nameOnDisk" : "libworklets.so", ++ "paths" : ++ { ++ "build" : "src/main/cpp/worklets", ++ "source" : "src/main/cpp/worklets" ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11, ++ 12, ++ 13, ++ 14 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.ninja_deps b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.ninja_deps +new file mode 100644 +index 0000000..ecbf132 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.ninja_deps differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.ninja_log b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.ninja_log +new file mode 100644 +index 0000000..c3de70a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/.ninja_log +@@ -0,0 +1,39 @@ ++# ninja log v5 ++0 9 0 /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs 7dec1cfc9cae9a72 ++1 1393 1761328169845068849 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o 2e593211905cfc77 ++2 1598 1761328170047747259 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o af6c6f57aaeb6c3b ++1 1601 1761328170051049476 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o 235a677a4da80d45 ++2 1811 1761328170256658884 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o ab2f72cc2b5f5e4e ++3 1923 1761328170338001172 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o b8373c3ae0d25da1 ++2 1958 1761328170408646409 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o bf5e013e8cbe1aab ++1 1978 1761328170381707985 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o af2a66e54f869804 ++1978 2012 1761328170465216125 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o 16fb594556163cc4 ++2012 2041 1761328170495848737 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o a21ba1894e9857f3 ++2041 2081 1761328170536251915 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o 8c09a2fc48311492 ++2082 2110 1761328170565224855 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b98422e15c49aa87 ++1 2492 1761328170938316599 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o 2b68909f18edfefb ++2492 2529 1761328170983480202 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o 7313e9192b874b48 ++1 2541 1761328170989205072 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o 4f2a930fea1b04b0 ++2529 2565 1761328171020285571 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o 7f4f2f73bbad577a ++1396 3213 1761328171662337171 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o 37997c6a024975c4 ++1601 3224 1761328171673728491 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o 670f0383eadba122 ++2 3525 1761328171969711233 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o 77c5314328ea9349 ++1598 3739 1761328172185074374 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o eadee3cd56f0081a ++1958 4346 1761328172794926985 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o 3317bd76e36cad5d ++3739 4451 1761328172903504206 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o a9a824b3dfbfb5bd ++1811 4768 1761328173214726959 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o be1c179d94fe5072 ++2566 4864 1761328173312898845 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o 56c8432a4553de80 ++2111 5318 1761328173744084973 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o b8d1b15400c59979 ++3225 5679 1761328174128651290 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o 22b35070b76901c3 ++1923 6046 1761328174487913978 src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o b983e0536c3e01f0 ++6046 6141 1761328174582606058 ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so d02d46bfcb5bfa59 ++3214 6158 1761328174606719069 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o c8fd0f74f67fe97d ++5679 6335 1761328174784258104 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o cdcaeba3b37336b9 ++3525 6796 1761328175234294221 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o b2f6ae069b9b1a0 ++2541 7147 1761328175582356927 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o e4cf73fd3207abd2 ++4346 7268 1761328175713627869 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o fc7cdb71cb7b4740 ++4451 7333 1761328175776612391 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o 672c1b42854120ed ++4768 7381 1761328175827639618 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o c4c8e297636fece2 ++5318 7939 1761328176384352443 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o 79252bf3b43959a6 ++4864 9264 1761328177692958124 src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o 8c70a3b23ca31563 ++9264 9341 1761328177776153506 ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so fa0c7f9c14b5aa80 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeCache.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeCache.txt +new file mode 100644 +index 0000000..36fb239 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeCache.txt +@@ -0,0 +1,444 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++ANDROID_TOOLCHAIN:UNINITIALIZED=clang ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=Reanimated ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-z,max-page-size=16384 ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++HERMES_ENABLE_DEBUGGER:UNINITIALIZED=1 ++ ++//No help, variable specified on the command line. ++IS_NEW_ARCHITECTURE_ENABLED:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++IS_REANIMATED_EXAMPLE_APP:UNINITIALIZED=false ++ ++//No help, variable specified on the command line. ++JS_RUNTIME:UNINITIALIZED=hermes ++ ++//No help, variable specified on the command line. ++JS_RUNTIME_DIR:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_DIR:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native ++ ++//No help, variable specified on the command line. ++REACT_NATIVE_MINOR_VERSION:UNINITIALIZED=77 ++ ++//No help, variable specified on the command line. ++REANIMATED_VERSION:UNINITIALIZED=3.16.7 ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++Reanimated_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ ++//Value Computed by CMake ++Reanimated_IS_TOP_LEVEL:STATIC=ON ++ ++//Value Computed by CMake ++Reanimated_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni ++ ++//The directory containing a CMake configuration file for hermes-engine. ++hermes-engine_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine ++ ++//Dependencies for the target ++reanimated_LIB_DEPENDS:STATIC=general;worklets;general;ReactAndroid::reactnative; ++ ++//Dependencies for the target ++worklets_LIB_DEPENDS:STATIC=general;log;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative;general;hermes-engine::libhermes;general;ReactAndroid::hermestooling; ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++CMAKE_EXPORT_COMPILE_COMMANDS:INTERNAL=ON ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=3 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..7cc57c9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..f17c25f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..545f104 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..4c361c3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..a9adbbb +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "x86_64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..c3995d0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..35accd4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..aeee6e9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,258 @@ ++The target system is: Android - 1 - x86_64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_76e62 && [1/2] Building C object CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_76e62 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_76e62 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_76e62 && [1/2] Building C object CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_76e62] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_76e62 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_76e62] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_76e62.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c865c && [1/2] Building CXX object CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_c865c ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_c865c /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c865c && [1/2] Building CXX object CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_c865c] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_c865c /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_c865c] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_c865c.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..32dd62a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,8 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/rebuild_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/rebuild_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake +new file mode 100644 +index 0000000..75d2e0c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake +@@ -0,0 +1,65 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by CMake Version 3.22 ++cmake_policy(SET CMP0009 NEW) ++ ++# REANIMATED_COMMON_CPP_SOURCES at src/main/cpp/reanimated/CMakeLists.txt:3 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/PropsRegistry.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/reanimated/Tools/FeaturesConfig.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# WORKLETS_COMMON_CPP_SOURCES at src/main/cpp/worklets/CMakeLists.txt:3 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/*.cpp") ++set(OLD_GLOB ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Registries/EventHandlerRegistry.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/SharedItems/Shareables.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/AsyncQueue.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/JSISerializer.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/JSLogger.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/JSScheduler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/ReanimatedVersion.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/UIScheduler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/Tools/WorkletEventHandler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs") ++endif() ++ ++# REANIMATED_ANDROID_CPP_SOURCES at src/main/cpp/reanimated/CMakeLists.txt:4 (file) ++file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/*.cpp") ++set(OLD_GLOB ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp" ++ ) ++if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}") ++ message("-- GLOB mismatch!") ++ file(TOUCH_NOCREATE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs") ++endif() +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs +new file mode 100644 +index 0000000..2b38fac +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs +@@ -0,0 +1 @@ ++# This file is generated by CMake for checking of the VerifyGlobs.cmake file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..aac96f3 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/rules.ninja +@@ -0,0 +1,92 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__worklets_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__worklets_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__reanimated_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__reanimated_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for re-checking globbed directories. ++ ++rule VERIFY_GLOBS ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake -P /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake ++ description = Re-checking globbed directories... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/additional_project_files.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build.json +new file mode 100644 +index 0000000..de7ce7a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build.json +@@ -0,0 +1,67 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "reanimated::@89a6a9b85fb42923616c": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "reanimated", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ ] ++ }, ++ "worklets::@a0394df2d94e5212d8bd": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "worklets", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build_mini.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build_mini.json +new file mode 100644 +index 0000000..2a5f501 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build_mini.json +@@ -0,0 +1,55 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/CMakeLists.txt", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "worklets::@a0394df2d94e5212d8bd": { ++ "artifactName": "worklets", ++ "abi": "x86_64", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ ] ++ }, ++ "reanimated::@89a6a9b85fb42923616c": { ++ "artifactName": "reanimated", ++ "abi": "x86_64", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build.ninja b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build.ninja +new file mode 100644 +index 0000000..a1b45ad +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build.ninja +@@ -0,0 +1,616 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: Reanimated ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.8 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt ++# ============================================================================= ++ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target worklets ++ ++ ++############################################# ++# Order-only phony target for worklets ++ ++build cmake_object_order_depends_target_worklets: phony || src/main/cpp/worklets/CMakeFiles/worklets.dir ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++build src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o: CXX_COMPILER__worklets_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp || cmake_object_order_depends_target_worklets ++ DEFINES = -Dworklets_EXPORTS ++ DEP_FILE = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ OBJECT_FILE_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target worklets ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so ++ ++build ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so: CXX_SHARED_LIBRARY_LINKER__worklets_Debug src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = -llog /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so -latomic -lm ++ OBJECT_DIR = src/main/cpp/worklets/CMakeFiles/worklets.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libworklets.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = src/main/cpp/worklets/CMakeFiles/worklets.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build src/main/cpp/worklets/CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/worklets/edit_cache: phony src/main/cpp/worklets/CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build src/main/cpp/worklets/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/worklets/rebuild_cache: phony src/main/cpp/worklets/CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt ++# ============================================================================= ++ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Order-only phony target for reanimated ++ ++build cmake_object_order_depends_target_reanimated: phony || cmake_object_order_depends_target_worklets ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++build src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o: CXX_COMPILER__reanimated_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp || cmake_object_order_depends_target_reanimated ++ DEFINES = -Dreanimated_EXPORTS ++ DEP_FILE = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ OBJECT_FILE_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target reanimated ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so ++ ++build ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so: CXX_SHARED_LIBRARY_LINKER__reanimated_Debug src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o | ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so || ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so -llog /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/libs/android.x86_64/libhermes.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so -latomic -lm ++ OBJECT_DIR = src/main/cpp/reanimated/CMakeFiles/reanimated.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libreanimated.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = src/main/cpp/reanimated/CMakeFiles/reanimated.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build src/main/cpp/reanimated/CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/reanimated/edit_cache: phony src/main/cpp/reanimated/CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build src/main/cpp/reanimated/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build src/main/cpp/reanimated/rebuild_cache: phony src/main/cpp/reanimated/CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build libreanimated.so: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so ++ ++build libworklets.so: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so ++ ++build reanimated: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so ++ ++build worklets: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++ ++build all: phony src/main/cpp/worklets/all src/main/cpp/reanimated/all ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated ++ ++build src/main/cpp/reanimated/all: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets ++ ++build src/main/cpp/worklets/all: phony ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Phony target to force glob verification run. ++ ++build /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake_force: phony ++ ++ ++############################################# ++# Re-run CMake to check if globbed directories changed. ++ ++build /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs: VERIFY_GLOBS | /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake_force ++ pool = console ++ restat = 1 ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/cmake.verify_globs | ../../../../CMakeLists.txt ../../../../src/main/cpp/reanimated/CMakeLists.txt ../../../../src/main/cpp/worklets/CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../../../../src/main/cpp/reanimated/CMakeLists.txt ../../../../src/main/cpp/worklets/CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/CMakeFiles/VerifyGlobs.cmake /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/cmake-utils/folly-flags.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build_file_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build_file_index.txt +new file mode 100644 +index 0000000..3b6ffda +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build_file_index.txt +@@ -0,0 +1,9 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/hermes-engine/hermes-engineConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/CMakeLists.txt ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/cmake_install.cmake +new file mode 100644 +index 0000000..b49dfe5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/cmake_install.cmake +@@ -0,0 +1,61 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(NOT CMAKE_INSTALL_LOCAL_ONLY) ++ # Include the install script for each subdirectory. ++ include("/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/cmake_install.cmake") ++ include("/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/cmake_install.cmake") ++ ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json +new file mode 100644 +index 0000000..9aa9687 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json +@@ -0,0 +1,177 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json.bin +new file mode 100644 +index 0000000..47e1bd3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json.bin differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/configure_fingerprint.bin b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/configure_fingerprint.bin +new file mode 100644 +index 0000000..08b77a1 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/configure_fingerprint.bin +@@ -0,0 +1,29 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ۺ3  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build.json  ۺ30 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build_mini.json  ۺ3, ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build.ninja  ۺ3 ++ ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build.ninja.txt  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/build_file_index.txt  ۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json  ۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json.bin  ۺ3 ۅ ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/metadata_generation_command.txt  ۺ3 ++ ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/prefab_config.json  ۺ3  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/symbol_folder_index.txt  ۺ3  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt  ۺ3  3 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/metadata_generation_command.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/metadata_generation_command.txt +new file mode 100644 +index 0000000..d9001a7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/metadata_generation_command.txt +@@ -0,0 +1,31 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=x86_64 ++-DCMAKE_ANDROID_ARCH_ABI=x86_64 ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 ++-GNinja ++-DANDROID_STL=c++_shared ++-DREACT_NATIVE_MINOR_VERSION=77 ++-DANDROID_TOOLCHAIN=clang ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 ++-DREACT_NATIVE_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native ++-DJS_RUNTIME=hermes ++-DJS_RUNTIME_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes ++-DIS_NEW_ARCHITECTURE_ENABLED=false ++-DIS_REANIMATED_EXAMPLE_APP=false ++-DREANIMATED_VERSION=3.16.7 ++-DHERMES_ENABLE_DEBUGGER=1 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/prefab_config.json b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/prefab_config.json +new file mode 100644 +index 0000000..871560d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/prefab_config.json +@@ -0,0 +1,9 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o +new file mode 100644 +index 0000000..7339c0e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o +new file mode 100644 +index 0000000..f6ed21f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o +new file mode 100644 +index 0000000..a0fb17e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o +new file mode 100644 +index 0000000..582227c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o +new file mode 100644 +index 0000000..768407d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o +new file mode 100644 +index 0000000..88b5416 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o +new file mode 100644 +index 0000000..2857e63 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o +new file mode 100644 +index 0000000..37113f0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o +new file mode 100644 +index 0000000..47258f2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o +new file mode 100644 +index 0000000..cbb4a73 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..cbbe656 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..7bf0654 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..8742134 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o +new file mode 100644 +index 0000000..f4305b3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o +new file mode 100644 +index 0000000..0373e1d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o +new file mode 100644 +index 0000000..06039d0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o +new file mode 100644 +index 0000000..74dbce3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o +new file mode 100644 +index 0000000..8023e11 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o +new file mode 100644 +index 0000000..97a4488 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o +new file mode 100644 +index 0000000..3887a08 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/cmake_install.cmake +new file mode 100644 +index 0000000..349e0c4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/reanimated/cmake_install.cmake +@@ -0,0 +1,44 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o +new file mode 100644 +index 0000000..16dacb2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o +new file mode 100644 +index 0000000..fac89cf +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o +new file mode 100644 +index 0000000..0cc4a0c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o +new file mode 100644 +index 0000000..bc475c0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o +new file mode 100644 +index 0000000..ae28273 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o +new file mode 100644 +index 0000000..b9b7ee9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o +new file mode 100644 +index 0000000..355260a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o +new file mode 100644 +index 0000000..cd256ca +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o +new file mode 100644 +index 0000000..fc03457 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o +new file mode 100644 +index 0000000..fd28c3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o +new file mode 100644 +index 0000000..f349c48 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o +new file mode 100644 +index 0000000..656c12c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o +new file mode 100644 +index 0000000..9141a62 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o +new file mode 100644 +index 0000000..b4719f1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o +new file mode 100644 +index 0000000..6ee0ca8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o differ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/cmake_install.cmake b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/cmake_install.cmake +new file mode 100644 +index 0000000..7909ef7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/src/main/cpp/worklets/cmake_install.cmake +@@ -0,0 +1,44 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/worklets ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ +diff --git a/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/symbol_folder_index.txt b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/symbol_folder_index.txt +new file mode 100644 +index 0000000..78d858d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..26ee16b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +@@ -0,0 +1,177 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json b/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json +new file mode 100644 +index 0000000..9aa9687 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json +@@ -0,0 +1,177 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dworklets_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/AndroidUIScheduler.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/JNIHelper.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/LayoutAnimations.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/NativeProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/OnLoad.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -Dreanimated_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/../Common/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/runtimeexecutor -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab/modules/libhermes/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -DREACT_NATIVE_MINOR_VERSION=77 -DREANIMATED_VERSION=3.16.7 -DHERMES_ENABLE_DEBUGGER=1 -fexceptions -fno-omit-frame-pointer -frtti -fstack-protector-all -std=c++20 -Wall -Werror -DJS_RUNTIME_HERMES=1 -fno-limit-debug-info -fPIC -DFOLLY_NO_CONFIG=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_CFG_NO_COROUTINES=1 -DFOLLY_MOBILE=1 -DFOLLY_HAVE_RECVMMSG=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_HAVE_XSI_STRERROR_R=1 -std=gnu++20 -o src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/cpp/reanimated/android/PlatformLogger.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build.gradle b/node_modules/react-native-reanimated/android/build.gradle +index 6129944..3e52104 100644 +--- a/node_modules/react-native-reanimated/android/build.gradle ++++ b/node_modules/react-native-reanimated/android/build.gradle +@@ -252,6 +252,8 @@ android { + arguments "-DANDROID_STL=c++_shared", + "-DREACT_NATIVE_MINOR_VERSION=${REACT_NATIVE_MINOR_VERSION}", + "-DANDROID_TOOLCHAIN=clang", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON", ++ "-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384", + "-DREACT_NATIVE_DIR=${toPlatformFileString(reactNativeRootDir.path)}", + "-DJS_RUNTIME=${JS_RUNTIME}", + "-DJS_RUNTIME_DIR=${jsRuntimeDir}", +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/8dceb9969076fcad25121acaedac57a9/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/8dceb9969076fcad25121acaedac57a9/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/.transforms/8dceb9969076fcad25121acaedac57a9/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/8dceb9969076fcad25121acaedac57a9/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-reanimated/android/build/.transforms/8dceb9969076fcad25121acaedac57a9/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..c009ee2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/8dceb9969076fcad25121acaedac57a9/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/results.bin b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/results.bin +new file mode 100644 +index 0000000..7ed749e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirDebug +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/ReanimatedUIImplementation.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/ReanimatedUIImplementation.dex +new file mode 100644 +index 0000000..3b7641b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/ReanimatedUIImplementation.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/ReanimatedUIManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/ReanimatedUIManager.dex +new file mode 100644 +index 0000000..0143713 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/ReanimatedUIManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/UIManagerReanimatedHelper.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/UIManagerReanimatedHelper.dex +new file mode 100644 +index 0000000..a5103b5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/uimanager/UIManagerReanimatedHelper.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/common/GestureHandlerStateManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/common/GestureHandlerStateManager.dex +new file mode 100644 +index 0000000..672d8e4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/common/GestureHandlerStateManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/AndroidUIScheduler$1.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/AndroidUIScheduler$1.dex +new file mode 100644 +index 0000000..505d82e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/AndroidUIScheduler$1.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/AndroidUIScheduler.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/AndroidUIScheduler.dex +new file mode 100644 +index 0000000..1bc05f2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/AndroidUIScheduler.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/BorderRadiiDrawableUtils.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/BorderRadiiDrawableUtils.dex +new file mode 100644 +index 0000000..bf1f12e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/BorderRadiiDrawableUtils.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/BuildConfig.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/BuildConfig.dex +new file mode 100644 +index 0000000..0cb5af9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/BuildConfig.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/CopiedEvent$1.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/CopiedEvent$1.dex +new file mode 100644 +index 0000000..4e35c1d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/CopiedEvent$1.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/CopiedEvent.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/CopiedEvent.dex +new file mode 100644 +index 0000000..56848fb +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/CopiedEvent.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/DevMenuUtils.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/DevMenuUtils.dex +new file mode 100644 +index 0000000..3922632 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/DevMenuUtils.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/MapUtils.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/MapUtils.dex +new file mode 100644 +index 0000000..f82133b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/MapUtils.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeMethodsHelper.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeMethodsHelper.dex +new file mode 100644 +index 0000000..be56227 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeMethodsHelper.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeProxy$1.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeProxy$1.dex +new file mode 100644 +index 0000000..e9cd9db +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeProxy$1.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeProxy.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeProxy.dex +new file mode 100644 +index 0000000..ef871f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeProxy.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeReanimatedModuleSpec.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeReanimatedModuleSpec.dex +new file mode 100644 +index 0000000..e858030 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NativeReanimatedModuleSpec.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$1.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$1.dex +new file mode 100644 +index 0000000..99a3b02 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$1.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$2.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$2.dex +new file mode 100644 +index 0000000..b0bfe06 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$2.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$3.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$3.dex +new file mode 100644 +index 0000000..7093176 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$3.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$4.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$4.dex +new file mode 100644 +index 0000000..1048530 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$4.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.dex +new file mode 100644 +index 0000000..aad48e5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$OnAnimationFrame.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$OnAnimationFrame.dex +new file mode 100644 +index 0000000..0004d3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager$OnAnimationFrame.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager.dex +new file mode 100644 +index 0000000..200ae1e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/NodesManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReaCompatibility.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReaCompatibility.dex +new file mode 100644 +index 0000000..99c02e9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReaCompatibility.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.dex +new file mode 100644 +index 0000000..7ac8d90 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReactNativeUtils.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReactNativeUtils.dex +new file mode 100644 +index 0000000..ead7809 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReactNativeUtils.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedMessageQueueThread.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedMessageQueueThread.dex +new file mode 100644 +index 0000000..141e358 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedMessageQueueThread.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.dex +new file mode 100644 +index 0000000..5baebcd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.dex +new file mode 100644 +index 0000000..4edb917 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedModule.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedModule.dex +new file mode 100644 +index 0000000..98b8bd6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedModule.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedPackage.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedPackage.dex +new file mode 100644 +index 0000000..590ced3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedPackage.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedUIManagerFactory.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedUIManagerFactory.dex +new file mode 100644 +index 0000000..a1f79de +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/ReanimatedUIManagerFactory.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/Utils.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/Utils.dex +new file mode 100644 +index 0000000..11b3778 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/Utils.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/Keyboard.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/Keyboard.dex +new file mode 100644 +index 0000000..b482689 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/Keyboard.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.dex +new file mode 100644 +index 0000000..fafde3c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.dex +new file mode 100644 +index 0000000..85002c3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardState.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardState.dex +new file mode 100644 +index 0000000..1b07b3b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardState.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.dex +new file mode 100644 +index 0000000..85fc261 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.dex +new file mode 100644 +index 0000000..38f70f1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/WindowsInsetsManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/WindowsInsetsManager.dex +new file mode 100644 +index 0000000..0c9e7ef +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/keyboard/WindowsInsetsManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/AnimationsManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/AnimationsManager.dex +new file mode 100644 +index 0000000..6d042c6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/AnimationsManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.dex +new file mode 100644 +index 0000000..97447ce +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.dex +new file mode 100644 +index 0000000..e1ed5cd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.dex +new file mode 100644 +index 0000000..893baa0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.dex +new file mode 100644 +index 0000000..22147ef +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.dex +new file mode 100644 +index 0000000..1eade4e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.dex +new file mode 100644 +index 0000000..78b58c2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ScreensHelper.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ScreensHelper.dex +new file mode 100644 +index 0000000..b5753c1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ScreensHelper.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedElement.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedElement.dex +new file mode 100644 +index 0000000..c046c88 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedElement.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.dex +new file mode 100644 +index 0000000..2f206c9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.dex +new file mode 100644 +index 0000000..3249962 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.dex +new file mode 100644 +index 0000000..bc0adb9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.dex +new file mode 100644 +index 0000000..c87c63b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.dex +new file mode 100644 +index 0000000..8fd2fe1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/Snapshot.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/Snapshot.dex +new file mode 100644 +index 0000000..5d37e06 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/Snapshot.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.dex +new file mode 100644 +index 0000000..18f0187 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.dex +new file mode 100644 +index 0000000..19b6298 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.dex +new file mode 100644 +index 0000000..3b0949c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.dex +new file mode 100644 +index 0000000..e997456 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.dex +new file mode 100644 +index 0000000..e289c2a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/EventHandler.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/EventHandler.dex +new file mode 100644 +index 0000000..88f4d96 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/EventHandler.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.dex +new file mode 100644 +index 0000000..9377e0a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/NoopEventHandler.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/NoopEventHandler.dex +new file mode 100644 +index 0000000..ee92c91 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/NoopEventHandler.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/SensorSetter.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/SensorSetter.dex +new file mode 100644 +index 0000000..da3bd9c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/nativeProxy/SensorSetter.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensor.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensor.dex +new file mode 100644 +index 0000000..dbf9995 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensor.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.dex +new file mode 100644 +index 0000000..af86a54 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorListener.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorListener.dex +new file mode 100644 +index 0000000..4eafc13 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorListener.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorType.dex b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorType.dex +new file mode 100644 +index 0000000..326992e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/reanimated/sensor/ReanimatedSensorType.dex differ +diff --git a/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +new file mode 100644 +index 0000000..3f95987 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/.transforms/de2b911953ddfa846facb5e516fdca2b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ +diff --git a/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java b/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java +new file mode 100644 +index 0000000..989f8aa +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/generated/source/buildConfig/debug/com/swmansion/reanimated/BuildConfig.java +@@ -0,0 +1,20 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.swmansion.reanimated; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.swmansion.reanimated"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final int EXOPACKAGE_FLAGS = 0; ++ // Field from default config. ++ public static final boolean IS_INTERNAL_BUILD = false; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = false; ++ // Field from default config. ++ public static final int REACT_NATIVE_MINOR_VERSION = 77; ++ // Field from default config. ++ public static final String REANIMATED_VERSION_JAVA = "3.16.7"; ++} +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..ed5d55a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..0c0f867 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.swmansion.reanimated", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar b/node_modules/react-native-reanimated/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar +new file mode 100644 +index 0000000..8a7bb8f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/node_modules/react-native-reanimated/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..aadd325 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libhermes.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libhermes.so +new file mode 100644 +index 0000000..9637fa6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libhermes.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libhermestooling.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libhermestooling.so +new file mode 100644 +index 0000000..2ee7e2a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libhermestooling.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..0d856b9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..92b0437 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so +new file mode 100755 +index 0000000..58eee6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so +new file mode 100755 +index 0000000..f771b3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so +new file mode 100644 +index 0000000..68ecbda +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libhermes.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libhermes.so +new file mode 100644 +index 0000000..c16d0dd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libhermes.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libhermestooling.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libhermestooling.so +new file mode 100644 +index 0000000..2fdc32d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libhermestooling.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..a2c5e5c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so +new file mode 100644 +index 0000000..1088a3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so +new file mode 100755 +index 0000000..6a5be3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so +new file mode 100755 +index 0000000..a8ac8f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..1d10fbf +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..7a4f2e0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-reanimated/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_command_targets b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_command_targets +new file mode 100755 +index 0000000..47bd2c9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_command_targets +@@ -0,0 +1,5 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a \ ++ reanimated \ ++ worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_model.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_model.json +new file mode 100644 +index 0000000..b6a89b7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_model.json +@@ -0,0 +1,230 @@ ++{ ++ "info": { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "soFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a", ++ "soRepublishFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/arm64-v8a", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d77", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "-DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native", ++ "-DJS_RUNTIME\u003dhermes", ++ "-DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes", ++ "-DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_VERSION\u003d3.16.7", ++ "-DHERMES_ENABLE_DEBUGGER\u003d1" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [ ++ "reanimated", ++ "worklets" ++ ], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx", ++ "intermediatesBaseFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates", ++ "intermediatesFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-reanimated", ++ "moduleRootFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android", ++ "moduleBuildFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build.gradle", ++ "makeFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cmakeVersionFromDsl": "3.22.1" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/android", ++ "sdkFolder": "/Users/yogesh/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "d3t4xl4a512xv5d6c4n4p6k5x621bp1s4v4v305k2s5f2235175r3b5o5mi", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.2.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DREACT_NATIVE_MINOR_VERSION\u003d77\n-DANDROID_TOOLCHAIN\u003dclang\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n-DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native\n-DJS_RUNTIME\u003dhermes\n-DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes\n-DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse\n-DIS_REANIMATED_EXAMPLE_APP\u003dfalse\n-DREANIMATED_VERSION\u003d3.16.7\n-DHERMES_ENABLE_DEBUGGER\u003d1", ++ "configurationArguments": [ ++ "-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003darm64-v8a", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a", ++ "-DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab", ++ "-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d77", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "-DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native", ++ "-DJS_RUNTIME\u003dhermes", ++ "-DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes", ++ "-DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_VERSION\u003d3.16.7", ++ "-DHERMES_ENABLE_DEBUGGER\u003d1" ++ ], ++ "stlLibraryFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_stderr_targets.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_stderr_targets.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_stdout_targets.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_stdout_targets.txt +new file mode 100644 +index 0000000..382b999 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/build_stdout_targets.txt +@@ -0,0 +1,39 @@ ++ninja: Entering directory `/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a' ++[0/2] Re-checking globbed directories... ++[1/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o ++[2/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o ++[3/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o ++[4/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o ++[5/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o ++[6/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o ++[7/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o ++[8/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o ++[9/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o ++[10/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o ++[11/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o ++[12/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o ++[13/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o ++[14/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o ++[15/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o ++[16/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o ++[17/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o ++[18/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o ++[19/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o ++[20/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o ++[21/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o ++[22/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o ++[23/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o ++[24/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o ++[25/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o ++[26/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o ++[27/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o ++[28/37] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so ++[29/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o ++[30/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o ++[31/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o ++[32/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o ++[33/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o ++[34/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o ++[35/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o ++[36/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o ++[37/37] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_command +new file mode 100755 +index 0000000..4758cc7 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_command +@@ -0,0 +1,30 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=arm64-v8a \ ++ -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a \ ++ -DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab \ ++ -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DREACT_NATIVE_MINOR_VERSION=77 \ ++ -DANDROID_TOOLCHAIN=clang \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 \ ++ -DREACT_NATIVE_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native \ ++ -DJS_RUNTIME=hermes \ ++ -DJS_RUNTIME_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes \ ++ -DIS_NEW_ARCHITECTURE_ENABLED=false \ ++ -DIS_REANIMATED_EXAMPLE_APP=false \ ++ -DREANIMATED_VERSION=3.16.7 \ ++ -DHERMES_ENABLE_DEBUGGER=1 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_stdout.txt +new file mode 100644 +index 0000000..1df645b +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/generate_cxx_metadata_12693_timing.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/generate_cxx_metadata_12693_timing.txt +new file mode 100644 +index 0000000..42dacd9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/generate_cxx_metadata_12693_timing.txt +@@ -0,0 +1,11 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 1195ms ++ generate-prefab-packages completed in 1203ms ++ execute-generate-process ++ exec-configure 917ms ++ [gap of 14ms] ++ execute-generate-process completed in 932ms ++generate_cxx_metadata completed in 2145ms ++ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/metadata_generation_record.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/metadata_generation_record.json +new file mode 100644 +index 0000000..4d1d14f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/metadata_generation_record.json +@@ -0,0 +1,184 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: arm64-v8a", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build.json due to:", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- no fingerprint file, will remove stale configuration folder", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n arm64-v8a \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging12884828880672518154/staged-cli-output \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "removing stale contents from \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "created folder \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d77 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384 \\\n -DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native \\\n -DJS_RUNTIME\u003dhermes \\\n -DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes \\\n -DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_VERSION\u003d3.16.7 \\\n -DHERMES_ENABLE_DEBUGGER\u003d1\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/arm64-v8a/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d77 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384 \\\n -DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native \\\n -DJS_RUNTIME\u003dhermes \\\n -DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes \\\n -DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_VERSION\u003d3.16.7 \\\n -DHERMES_ENABLE_DEBUGGER\u003d1\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json.bin normally", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/compile_commands.json to /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/tools/debug/arm64-v8a/compile_commands.json", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/prefab_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/prefab_command +new file mode 100755 +index 0000000..7c24f02 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/prefab_command +@@ -0,0 +1,21 @@ ++/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ arm64-v8a \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging12884828880672518154/staged-cli-output \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/prefab_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/prefab_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/arm64-v8a/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_command_targets b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_command_targets +new file mode 100755 +index 0000000..f32e098 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_command_targets +@@ -0,0 +1,5 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 \ ++ reanimated \ ++ worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_model.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_model.json +new file mode 100644 +index 0000000..d6e1593 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_model.json +@@ -0,0 +1,230 @@ ++{ ++ "info": { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "soFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64", ++ "soRepublishFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cmake/debug/obj/x86_64", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d77", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "-DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native", ++ "-DJS_RUNTIME\u003dhermes", ++ "-DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes", ++ "-DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_VERSION\u003d3.16.7", ++ "-DHERMES_ENABLE_DEBUGGER\u003d1" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [ ++ "reanimated", ++ "worklets" ++ ], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx", ++ "intermediatesBaseFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates", ++ "intermediatesFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react-native-reanimated", ++ "moduleRootFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android", ++ "moduleBuildFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build.gradle", ++ "makeFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cmakeVersionFromDsl": "3.22.1" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/android", ++ "sdkFolder": "/Users/yogesh/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "d3t4xl4a512xv5d6c4n4p6k5x621bp1s4v4v305k2s5f2235175r3b5o5mi", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.2.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DREACT_NATIVE_MINOR_VERSION\u003d77\n-DANDROID_TOOLCHAIN\u003dclang\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n-DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native\n-DJS_RUNTIME\u003dhermes\n-DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes\n-DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse\n-DIS_REANIMATED_EXAMPLE_APP\u003dfalse\n-DREANIMATED_VERSION\u003d3.16.7\n-DHERMES_ENABLE_DEBUGGER\u003d1", ++ "configurationArguments": [ ++ "-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003dx86_64", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003dx86_64", ++ "-DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab", ++ "-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DREACT_NATIVE_MINOR_VERSION\u003d77", ++ "-DANDROID_TOOLCHAIN\u003dclang", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "-DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native", ++ "-DJS_RUNTIME\u003dhermes", ++ "-DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes", ++ "-DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse", ++ "-DIS_REANIMATED_EXAMPLE_APP\u003dfalse", ++ "-DREANIMATED_VERSION\u003d3.16.7", ++ "-DHERMES_ENABLE_DEBUGGER\u003d1" ++ ], ++ "stlLibraryFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_stderr_targets.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_stderr_targets.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_stdout_targets.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_stdout_targets.txt +new file mode 100644 +index 0000000..04d2306 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/build_stdout_targets.txt +@@ -0,0 +1,39 @@ ++ninja: Entering directory `/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64' ++[0/2] Re-checking globbed directories... ++[1/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/WorkletRuntimeRegistry.cpp.o ++[2/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedJSIUtils.cpp.o ++[3/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSISerializer.cpp.o ++[4/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSLogger.cpp.o ++[5/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/UIScheduler.cpp.o ++[6/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/JSScheduler.cpp.o ++[7/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/AsyncQueue.cpp.o ++[8/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/PropsRegistry.cpp.o ++[9/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedCommitHook.cpp.o ++[10/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ReanimatedMountHook.cpp.o ++[11/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Fabric/ShadowTreeCloner.cpp.o ++[12/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/SharedItems/Shareables.cpp.o ++[13/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy.cpp.o ++[14/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Registries/EventHandlerRegistry.cpp.o ++[15/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsUtils.cpp.o ++[16/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/WorkletEventHandler.cpp.o ++[17/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedRuntime.cpp.o ++[18/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/Tools/ReanimatedVersion.cpp.o ++[19/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/ReanimatedHermesRuntime.cpp.o ++[20/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/AnimatedSensor/AnimatedSensorModule.cpp.o ++[21/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/Tools/FeaturesConfig.cpp.o ++[22/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntime.cpp.o ++[23/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModuleSpec.cpp.o ++[24/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsManager.cpp.o ++[25/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.cpp.o ++[26/37] Building CXX object src/main/cpp/worklets/CMakeFiles/worklets.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/worklets/WorkletRuntime/WorkletRuntimeDecorator.cpp.o ++[27/37] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so ++[28/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/RNRuntimeDecorator.cpp.o ++[29/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/PlatformLogger.cpp.o ++[30/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/RuntimeDecorators/UIRuntimeDecorator.cpp.o ++[31/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp.o ++[32/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/AndroidUIScheduler.cpp.o ++[33/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/JNIHelper.cpp.o ++[34/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/LayoutAnimations.cpp.o ++[35/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/OnLoad.cpp.o ++[36/37] Building CXX object src/main/cpp/reanimated/CMakeFiles/reanimated.dir/android/NativeProxy.cpp.o ++[37/37] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_command +new file mode 100755 +index 0000000..8bd7401 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_command +@@ -0,0 +1,30 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=x86_64 \ ++ -DCMAKE_ANDROID_ARCH_ABI=x86_64 \ ++ -DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab \ ++ -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DREACT_NATIVE_MINOR_VERSION=77 \ ++ -DANDROID_TOOLCHAIN=clang \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 \ ++ -DREACT_NATIVE_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native \ ++ -DJS_RUNTIME=hermes \ ++ -DJS_RUNTIME_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes \ ++ -DIS_NEW_ARCHITECTURE_ENABLED=false \ ++ -DIS_REANIMATED_EXAMPLE_APP=false \ ++ -DREANIMATED_VERSION=3.16.7 \ ++ -DHERMES_ENABLE_DEBUGGER=1 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_stdout.txt +new file mode 100644 +index 0000000..f060cd4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/generate_cxx_metadata_12693_timing.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/generate_cxx_metadata_12693_timing.txt +new file mode 100644 +index 0000000..9bb8136 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/generate_cxx_metadata_12693_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 457ms ++ generate-prefab-packages completed in 460ms ++ execute-generate-process ++ exec-configure 288ms ++ execute-generate-process completed in 295ms ++generate_cxx_metadata completed in 759ms ++ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/metadata_generation_record.json b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/metadata_generation_record.json +new file mode 100644 +index 0000000..b462f2f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/metadata_generation_record.json +@@ -0,0 +1,184 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86_64", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build.json due to:", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- no fingerprint file, will remove stale configuration folder", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n x86_64 \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging2796504315929418118/staged-cli-output \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "removing stale contents from \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "created folder \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d77 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384 \\\n -DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native \\\n -DJS_RUNTIME\u003dhermes \\\n -DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes \\\n -DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_VERSION\u003d3.16.7 \\\n -DHERMES_ENABLE_DEBUGGER\u003d1\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/prefab/x86_64/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DREACT_NATIVE_MINOR_VERSION\u003d77 \\\n -DANDROID_TOOLCHAIN\u003dclang \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384 \\\n -DREACT_NATIVE_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native \\\n -DJS_RUNTIME\u003dhermes \\\n -DJS_RUNTIME_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/sdks/hermes \\\n -DIS_NEW_ARCHITECTURE_ENABLED\u003dfalse \\\n -DIS_REANIMATED_EXAMPLE_APP\u003dfalse \\\n -DREANIMATED_VERSION\u003d3.16.7 \\\n -DHERMES_ENABLE_DEBUGGER\u003d1\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json.bin normally", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/compile_commands.json to /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/tools/debug/x86_64/compile_commands.json", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/prefab_command b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/prefab_command +new file mode 100755 +index 0000000..fde1c77 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/prefab_command +@@ -0,0 +1,21 @@ ++/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ x86_64 \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging2796504315929418118/staged-cli-output \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/9a1ddb2948cd8e705f8203b46c48972c/transformed/jetified-hermes-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/prefab_stderr.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/prefab_stdout.txt b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/logs/x86_64/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..aadd325 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libhermes.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libhermes.so +new file mode 100644 +index 0000000..9637fa6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libhermes.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libhermestooling.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libhermestooling.so +new file mode 100644 +index 0000000..2ee7e2a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libhermestooling.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..0d856b9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..92b0437 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so +new file mode 100755 +index 0000000..58eee6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so +new file mode 100755 +index 0000000..f771b3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libc++_shared.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libfbjni.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libfbjni.so +new file mode 100644 +index 0000000..68ecbda +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libfbjni.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libhermes.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libhermes.so +new file mode 100644 +index 0000000..c16d0dd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libhermes.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libhermestooling.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libhermestooling.so +new file mode 100644 +index 0000000..2fdc32d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libhermestooling.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libjsi.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..a2c5e5c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreactnative.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreactnative.so +new file mode 100644 +index 0000000..1088a3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreactnative.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so +new file mode 100755 +index 0000000..6a5be3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so +new file mode 100755 +index 0000000..a8ac8f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..1c983fc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..7b06ea3 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Fri Oct 24 22:53:24 IST 2025 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..7095c42 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..31b85fa +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..3956857 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-reanimated/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..1353025 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/ReanimatedUIImplementation.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/ReanimatedUIImplementation.class +new file mode 100644 +index 0000000..5ccf53a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/ReanimatedUIImplementation.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/ReanimatedUIManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/ReanimatedUIManager.class +new file mode 100644 +index 0000000..c863245 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/ReanimatedUIManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/UIManagerReanimatedHelper.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/UIManagerReanimatedHelper.class +new file mode 100644 +index 0000000..78c82c3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/uimanager/UIManagerReanimatedHelper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class +new file mode 100644 +index 0000000..25bb987 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/common/GestureHandlerStateManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/AndroidUIScheduler$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/AndroidUIScheduler$1.class +new file mode 100644 +index 0000000..7c4de85 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/AndroidUIScheduler$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/AndroidUIScheduler.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/AndroidUIScheduler.class +new file mode 100644 +index 0000000..968077c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/AndroidUIScheduler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BorderRadiiDrawableUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BorderRadiiDrawableUtils.class +new file mode 100644 +index 0000000..6c7bcfe +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BorderRadiiDrawableUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class +new file mode 100644 +index 0000000..46882ab +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/BuildConfig.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class +new file mode 100644 +index 0000000..318a4b8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class +new file mode 100644 +index 0000000..f74e033 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/CopiedEvent.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class +new file mode 100644 +index 0000000..0b72740 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/DevMenuUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class +new file mode 100644 +index 0000000..dfe568b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/MapUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeMethodsHelper.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeMethodsHelper.class +new file mode 100644 +index 0000000..9f808b6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeMethodsHelper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy$1.class +new file mode 100644 +index 0000000..aa7af54 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class +new file mode 100644 +index 0000000..3b97dca +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeProxy.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class +new file mode 100644 +index 0000000..b6b4772 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NativeReanimatedModuleSpec.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class +new file mode 100644 +index 0000000..cb5b750 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$2.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$2.class +new file mode 100644 +index 0000000..596f531 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$2.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$3.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$3.class +new file mode 100644 +index 0000000..0154ffa +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$3.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$4.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$4.class +new file mode 100644 +index 0000000..b0e9d9e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$4.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.class +new file mode 100644 +index 0000000..2fbdb44 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class +new file mode 100644 +index 0000000..872bf6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class +new file mode 100644 +index 0000000..644b0b1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/NodesManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReaCompatibility.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReaCompatibility.class +new file mode 100644 +index 0000000..943bf86 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReaCompatibility.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.class +new file mode 100644 +index 0000000..fef5723 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReactNativeUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReactNativeUtils.class +new file mode 100644 +index 0000000..4eb6bcc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReactNativeUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedMessageQueueThread.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedMessageQueueThread.class +new file mode 100644 +index 0000000..6ae7766 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedMessageQueueThread.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.class +new file mode 100644 +index 0000000..63166b4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.class +new file mode 100644 +index 0000000..9052b83 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class +new file mode 100644 +index 0000000..fd791e5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedModule.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class +new file mode 100644 +index 0000000..a1bd61c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedPackage.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedUIManagerFactory.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedUIManagerFactory.class +new file mode 100644 +index 0000000..a13ea39 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/ReanimatedUIManagerFactory.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class +new file mode 100644 +index 0000000..8653348 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/Utils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class +new file mode 100644 +index 0000000..bb4604d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/Keyboard.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class +new file mode 100644 +index 0000000..8fdb012 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class +new file mode 100644 +index 0000000..bae195e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class +new file mode 100644 +index 0000000..4819270 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardState.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class +new file mode 100644 +index 0000000..367c1a6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class +new file mode 100644 +index 0000000..67b0338 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class +new file mode 100644 +index 0000000..72ef476 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/AnimationsManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/AnimationsManager.class +new file mode 100644 +index 0000000..bde7acc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/AnimationsManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.class +new file mode 100644 +index 0000000..2f9e8c0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.class +new file mode 100644 +index 0000000..51ea969 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.class +new file mode 100644 +index 0000000..b0cdc1b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.class +new file mode 100644 +index 0000000..eb6cdd9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.class +new file mode 100644 +index 0000000..ccc9424 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.class +new file mode 100644 +index 0000000..ed2a0df +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ScreensHelper.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ScreensHelper.class +new file mode 100644 +index 0000000..7740161 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ScreensHelper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedElement.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedElement.class +new file mode 100644 +index 0000000..5225268 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedElement.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.class +new file mode 100644 +index 0000000..1be8175 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.class +new file mode 100644 +index 0000000..7becace +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.class +new file mode 100644 +index 0000000..0afa6b2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.class +new file mode 100644 +index 0000000..b030d52 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.class +new file mode 100644 +index 0000000..82dc4b0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/Snapshot.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/Snapshot.class +new file mode 100644 +index 0000000..e267e66 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/Snapshot.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.class +new file mode 100644 +index 0000000..e121fdd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.class +new file mode 100644 +index 0000000..7ef069b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.class +new file mode 100644 +index 0000000..4ee5412 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.class +new file mode 100644 +index 0000000..0417cc3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class +new file mode 100644 +index 0000000..d45cd1a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class +new file mode 100644 +index 0000000..cff463f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/EventHandler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.class +new file mode 100644 +index 0000000..5cf20d8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class +new file mode 100644 +index 0000000..dd47f6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class +new file mode 100644 +index 0000000..7aefac3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/nativeProxy/SensorSetter.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class +new file mode 100644 +index 0000000..34ae9ab +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class +new file mode 100644 +index 0000000..987353f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class +new file mode 100644 +index 0000000..3fdb42f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class +new file mode 100644 +index 0000000..5faa711 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/reanimated/sensor/ReanimatedSensorType.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libreanimated.so +new file mode 100644 +index 0000000..58eee6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libworklets.so +new file mode 100644 +index 0000000..f771b3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libreanimated.so +new file mode 100644 +index 0000000..6a5be3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libworklets.so +new file mode 100644 +index 0000000..a8ac8f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so +new file mode 100644 +index 0000000..58eee6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so +new file mode 100644 +index 0000000..f771b3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so +new file mode 100644 +index 0000000..6a5be3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so +new file mode 100644 +index 0000000..a8ac8f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..78ac5b8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,2 @@ ++R_DEF: Internal format may change without notice ++local +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..1fd95ff +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_consumer_proguard_file/debug/mergeDebugConsumerProguardFiles/proguard.txt b/node_modules/react-native-reanimated/android/build/intermediates/merged_consumer_proguard_file/debug/mergeDebugConsumerProguardFiles/proguard.txt +new file mode 100644 +index 0000000..c6e18e2 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/merged_consumer_proguard_file/debug/mergeDebugConsumerProguardFiles/proguard.txt +@@ -0,0 +1,3 @@ ++-keep class com.swmansion.reanimated.** { *; } ++-keep class com.facebook.react.turbomodule.** { *; } ++-keep class com.facebook.react.fabric.** { *; } +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react-native-reanimated.jar b/node_modules/react-native-reanimated/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react-native-reanimated.jar +new file mode 100644 +index 0000000..15cb0ec +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react-native-reanimated.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..ed5d55a +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so +new file mode 100644 +index 0000000..58eee6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so +new file mode 100644 +index 0000000..f771b3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so +new file mode 100644 +index 0000000..6a5be3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so +new file mode 100644 +index 0000000..a8ac8f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h +new file mode 100644 +index 0000000..4a79578 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/AnimatedSensor/AnimatedSensorModule.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++enum SensorType { ++ ACCELEROMETER = 1, ++ GYROSCOPE = 2, ++ GRAVITY = 3, ++ MAGNETIC_FIELD = 4, ++ ROTATION_VECTOR = 5, ++}; ++ ++class AnimatedSensorModule { ++ std::unordered_set sensorsIds_; ++ RegisterSensorFunction platformRegisterSensorFunction_; ++ UnregisterSensorFunction platformUnregisterSensorFunction_; ++ ++ public: ++ AnimatedSensorModule( ++ const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ~AnimatedSensorModule(); ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const std::shared_ptr &uiWorkletRuntime, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer); ++ void unregisterSensor(const jsi::Value &sensorId); ++ void unregisterAllSensors(); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/PropsRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/PropsRegistry.h +new file mode 100644 +index 0000000..2722a6f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/PropsRegistry.h +@@ -0,0 +1,59 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++class PropsRegistry { ++ public: ++ std::lock_guard createLock() const; ++ // returns a lock you need to hold when calling any of the methods below ++ ++ void update(const ShadowNode::Shared &shadowNode, folly::dynamic &&props); ++ ++ void for_each(std::function callback) const; ++ ++ void remove(const Tag tag); ++ ++ void pauseReanimatedCommits() { ++ isPaused_ = true; ++ } ++ ++ bool shouldReanimatedSkipCommit() { ++ return isPaused_; ++ } ++ ++ void unpauseReanimatedCommits() { ++ isPaused_ = false; ++ } ++ ++ void pleaseCommitAfterPause() { ++ shouldCommitAfterPause_ = true; ++ } ++ ++ bool shouldCommitAfterPause() { ++ return shouldCommitAfterPause_.exchange(false); ++ } ++ ++ private: ++ std::unordered_map> map_; ++ ++ mutable std::mutex mutex_; // Protects `map_`. ++ ++ std::atomic isPaused_; ++ std::atomic shouldCommitAfterPause_; ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h +new file mode 100644 +index 0000000..d9e7901 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitHook.h +@@ -0,0 +1,61 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++class ReanimatedCommitHook : public UIManagerCommitHook { ++ public: ++ ReanimatedCommitHook( ++ const std::shared_ptr &propsRegistry, ++ const std::shared_ptr &uiManager, ++ const std::shared_ptr &layoutAnimationsProxy); ++ ++ ~ReanimatedCommitHook() noexcept override; ++ ++#if REACT_NATIVE_MINOR_VERSION >= 73 ++ void commitHookWasRegistered(UIManager const &) noexcept override {} ++ ++ void commitHookWasUnregistered(UIManager const &) noexcept override {} ++ ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ ShadowTree const &shadowTree, ++ RootShadowNode::Shared const &oldRootShadowNode, ++ RootShadowNode::Unshared const &newRootShadowNode) noexcept override; ++#else ++ void commitHookWasRegistered(UIManager const &) const noexcept override {} ++ ++ void commitHookWasUnregistered(UIManager const &) const noexcept override {} ++ ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ ShadowTree const &shadowTree, ++ RootShadowNode::Shared const &oldRootShadowNode, ++ RootShadowNode::Unshared const &newRootShadowNode) ++ const noexcept override; ++#endif ++ ++ void maybeInitializeLayoutAnimations(SurfaceId surfaceId); ++ ++ private: ++ std::shared_ptr propsRegistry_; ++ ++ std::shared_ptr uiManager_; ++ ++ std::shared_ptr layoutAnimationsProxy_; ++ ++ SurfaceId currentMaxSurfaceId_ = -1; ++ ++ std::mutex mutex_; // Protects `currentMaxSurfaceId_`. ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h +new file mode 100644 +index 0000000..34ca4ba +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedCommitShadowNode.h +@@ -0,0 +1,49 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++// We use this trait to mark that a commit was created by Reanimated. ++// Traits are copied when nodes are cloned, so this information ++// won't be lost unless someone explicitly overrides it. ++// We need this information to skip unnecessary updates in ++// the commit hook. ++// Currently RN traits go up to 10, so hopefully ++// the arbitrarily chosen numbers 27 and 28 will be safe :) ++ ++// We have to use 2 traits, because we want to distinguish reanimated ++// commits both in the commit hook and mount hook. If we only had one trait ++// and didn't remove it in the commit hook, then any node that would clone ++// this node would also have our commit trait, rendering this trait useless. ++constexpr ShadowNodeTraits::Trait ReanimatedCommitTrait{1 << 27}; ++constexpr ShadowNodeTraits::Trait ReanimatedMountTrait{1 << 28}; ++ ++class ReanimatedCommitShadowNode : public ShadowNode { ++ public: ++ inline void setReanimatedCommitTrait() { ++ traits_.set(ReanimatedCommitTrait); ++ } ++ inline void unsetReanimatedCommitTrait() { ++ traits_.unset(ReanimatedCommitTrait); ++ } ++ inline bool hasReanimatedCommitTrait() { ++ return traits_.check(ReanimatedCommitTrait); ++ } ++ inline void setReanimatedMountTrait() { ++ traits_.set(ReanimatedMountTrait); ++ } ++ inline void unsetReanimatedMountTrait() { ++ traits_.unset(ReanimatedMountTrait); ++ } ++ inline bool hasReanimatedMountTrait() { ++ return traits_.check(ReanimatedMountTrait); ++ } ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h +new file mode 100644 +index 0000000..143eb87 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ReanimatedMountHook.h +@@ -0,0 +1,33 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::react; ++ ++class ReanimatedMountHook : public UIManagerMountHook { ++ public: ++ ReanimatedMountHook( ++ const std::shared_ptr &propsRegistry, ++ const std::shared_ptr &uiManager); ++ ~ReanimatedMountHook() noexcept override; ++ ++ void shadowTreeDidMount( ++ RootShadowNode::Shared const &rootShadowNode, ++ double mountTime) noexcept override; ++ ++ private: ++ const std::shared_ptr propsRegistry_; ++ const std::shared_ptr uiManager_; ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h +new file mode 100644 +index 0000000..e3f9f6d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Fabric/ShadowTreeCloner.h +@@ -0,0 +1,29 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++using PropsMap = ++ std::unordered_map>; ++using ChildrenMap = ++ std::unordered_map>; ++ ++RootShadowNode::Unshared cloneShadowTreeWithNewProps( ++ const RootShadowNode &oldRootNode, ++ const PropsMap &propsMap); ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h +new file mode 100644 +index 0000000..229558e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationType.h +@@ -0,0 +1,9 @@ ++#pragma once ++ ++typedef enum LayoutAnimationType { ++ ENTERING = 1, ++ EXITING = 2, ++ LAYOUT = 3, ++ SHARED_ELEMENT_TRANSITION = 4, ++ SHARED_ELEMENT_TRANSITION_PROGRESS = 5, ++} LayoutAnimationType; +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h +new file mode 100644 +index 0000000..033cd98 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsManager.h +@@ -0,0 +1,90 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++struct LayoutAnimationConfig { ++ int tag; ++ LayoutAnimationType type; ++ std::shared_ptr config; ++ std::string sharedTransitionTag; ++}; ++ ++class LayoutAnimationsManager { ++ public: ++ explicit LayoutAnimationsManager(const std::shared_ptr &jsLogger) ++ : jsLogger_(jsLogger) {} ++ void configureAnimationBatch( ++ const std::vector &layoutAnimationsBatch); ++ void setShouldAnimateExiting(const int tag, const bool value); ++ bool shouldAnimateExiting(const int tag, const bool shouldAnimate); ++ bool hasLayoutAnimation(const int tag, const LayoutAnimationType type); ++ void startLayoutAnimation( ++ jsi::Runtime &rt, ++ const int tag, ++ const LayoutAnimationType type, ++ const jsi::Object &values); ++ void clearLayoutAnimationConfig(const int tag); ++ void clearSharedTransitionConfig(const int tag); ++ void cancelLayoutAnimation(jsi::Runtime &rt, const int tag) const; ++#ifdef RCT_NEW_ARCH_ENABLED ++ void transferConfigFromNativeID(const int nativeId, const int tag); ++#endif ++ int findPrecedingViewTagForTransition(const int tag); ++ const std::vector &getSharedGroup(const int viewTag); ++#ifndef NDEBUG ++ std::string getScreenSharedTagPairString( ++ const int screenTag, ++ const std::string &sharedTag) const; ++ void checkDuplicateSharedTag(const int viewTag, const int screenTag); ++#endif ++ ++ private: ++ std::unordered_map> &getConfigsForType( ++ const LayoutAnimationType type); ++ ++ std::shared_ptr jsLogger_; ++#ifndef NDEBUG ++ // This set's function is to detect duplicate sharedTags on a single screen ++ // it contains strings in form: "reactScreenTag:sharedTag" ++ std::unordered_set screenSharedTagSet_; ++ // And this map is to remove collected pairs on SET removal ++ std::unordered_map viewsScreenSharedTagMap_; ++#endif ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ std::unordered_map> ++ enteringAnimationsForNativeID_; ++#endif ++ std::unordered_map> enteringAnimations_; ++ std::unordered_map> exitingAnimations_; ++ std::unordered_map> layoutAnimations_; ++ std::unordered_map> ++ sharedTransitionAnimations_; ++ std::unordered_set ignoreProgressAnimationForTag_; ++ std::unordered_map> sharedTransitionGroups_; ++ std::unordered_map viewTagToSharedTag_; ++ std::unordered_map shouldAnimateExitingForTag_; ++ mutable std::recursive_mutex ++ animationsMutex_; // Protects `enteringAnimations_`, `exitingAnimations_`, ++ // `layoutAnimations_`, `viewSharedValues_` and `shouldAnimateExitingForTag_`. ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +new file mode 100644 +index 0000000..8fd9a89 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +@@ -0,0 +1,140 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class NativeReanimatedModule; ++ ++using namespace facebook; ++ ++struct LayoutAnimation { ++ std::shared_ptr finalView, currentView, parentView; ++ std::optional opacity; ++ int count = 1; ++ LayoutAnimation &operator=(const LayoutAnimation &other) = default; ++}; ++ ++struct LayoutAnimationsProxy : public MountingOverrideDelegate { ++ mutable std::unordered_map> nodeForTag_; ++ mutable std::unordered_map layoutAnimations_; ++ mutable std::recursive_mutex mutex; ++ mutable SurfaceManager surfaceManager; ++ mutable std::unordered_set> deadNodes; ++ mutable std::unordered_map leastRemoved; ++ std::shared_ptr layoutAnimationsManager_; ++ ContextContainer::Shared contextContainer_; ++ SharedComponentDescriptorRegistry componentDescriptorRegistry_; ++ jsi::Runtime &uiRuntime_; ++ const std::shared_ptr uiScheduler_; ++ LayoutAnimationsProxy( ++ std::shared_ptr layoutAnimationsManager, ++ SharedComponentDescriptorRegistry componentDescriptorRegistry, ++ ContextContainer::Shared contextContainer, ++ jsi::Runtime &uiRuntime, ++ const std::shared_ptr uiScheduler) ++ : layoutAnimationsManager_(layoutAnimationsManager), ++ contextContainer_(contextContainer), ++ componentDescriptorRegistry_(componentDescriptorRegistry), ++ uiRuntime_(uiRuntime), ++ uiScheduler_(uiScheduler) {} ++ ++ void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) ++ const; ++ void startExitingAnimation(const int tag, ShadowViewMutation &mutation) const; ++ void startLayoutAnimation(const int tag, const ShadowViewMutation &mutation) ++ const; ++ ++ void transferConfigFromNativeID(const std::string nativeId, const int tag) ++ const; ++ std::optional progressLayoutAnimation( ++ int tag, ++ const jsi::Object &newStyle); ++ std::optional endLayoutAnimation(int tag, bool shouldRemove); ++ void maybeCancelAnimation(const int tag) const; ++ ++ void parseRemoveMutations( ++ std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ std::vector> &roots) const; ++ void handleRemovals( ++ ShadowViewMutationList &filteredMutations, ++ std::vector> &roots) const; ++ ++ void handleUpdatesAndEnterings( ++ ShadowViewMutationList &filteredMutations, ++ const std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ const PropsParserContext &propsParserContext, ++ SurfaceId surfaceId) const; ++ void addOngoingAnimations( ++ SurfaceId surfaceId, ++ ShadowViewMutationList &mutations) const; ++ void updateOngoingAnimationTarget( ++ const int tag, ++ const ShadowViewMutation &mutation) const; ++ std::shared_ptr cloneViewWithoutOpacity( ++ facebook::react::ShadowViewMutation &mutation, ++ const PropsParserContext &propsParserContext) const; ++ void maybeRestoreOpacity( ++ LayoutAnimation &layoutAnimation, ++ const jsi::Object &newStyle) const; ++ void maybeUpdateWindowDimensions( ++ facebook::react::ShadowViewMutation &mutation, ++ SurfaceId surfaceId) const; ++ void createLayoutAnimation( ++ const ShadowViewMutation &mutation, ++ ShadowView &oldView, ++ const SurfaceId &surfaceId, ++ const int tag) const; ++ ++ void updateIndexForMutation(ShadowViewMutation &mutation) const; ++ ++ void removeRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ bool startAnimationsRecursively( ++ std::shared_ptr node, ++ const bool shouldRemoveSubviewsWithoutAnimations, ++ const bool shouldAnimate, ++ const bool isScreenPop, ++ ShadowViewMutationList &mutations) const; ++ void endAnimationsRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ void maybeDropAncestors( ++ std::shared_ptr node, ++ std::shared_ptr child, ++ ShadowViewMutationList &cleanupMutations) const; ++ ++ const ComponentDescriptor &getComponentDescriptorForShadowView( ++ const ShadowView &shadowView) const; ++ ++ // MountingOverrideDelegate ++ ++ bool shouldOverridePullTransaction() const override; ++ std::optional pullTransaction( ++ SurfaceId surfaceId, ++ MountingTransaction::Number number, ++ const TransactionTelemetry &telemetry, ++ ShadowViewMutationList mutations) const override; ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +new file mode 100644 +index 0000000..af59fce +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +@@ -0,0 +1,177 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++struct Rect { ++ double width, height; ++}; ++ ++struct Frame { ++ std::optional x, y, width, height; ++ Frame(jsi::Runtime &runtime, const jsi::Object &newStyle) { ++ if (newStyle.hasProperty(runtime, "originX")) { ++ x = newStyle.getProperty(runtime, "originX").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "originY")) { ++ y = newStyle.getProperty(runtime, "originY").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "width")) { ++ width = newStyle.getProperty(runtime, "width").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "height")) { ++ height = newStyle.getProperty(runtime, "height").asNumber(); ++ } ++ } ++}; ++ ++struct UpdateValues { ++ Props::Shared newProps; ++ Frame frame; ++}; ++ ++struct Snapshot { ++ double x, y, width, height, windowWidth, windowHeight; ++ Snapshot(const ShadowView &shadowView, Rect window) { ++ const auto &frame = shadowView.layoutMetrics.frame; ++ x = frame.origin.x; ++ y = frame.origin.y; ++ width = frame.size.width; ++ height = frame.size.height; ++ windowWidth = window.width; ++ windowHeight = window.height; ++ } ++}; ++ ++typedef enum ExitingState { ++ UNDEFINED = 1, ++ WAITING = 2, ++ ANIMATING = 4, ++ DEAD = 8, ++ MOVED = 16, ++ DELETED = 32, ++} ExitingState; ++ ++struct MutationNode; ++ ++/** ++ Represents a view that was either removed or had a child removed from the ++ ShadowTree ++ */ ++struct Node { ++ std::vector> children, unflattenedChildren; ++ std::shared_ptr parent, unflattenedParent; ++ Tag tag; ++ void removeChildFromUnflattenedTree(std::shared_ptr child); ++ void applyMutationToIndices(ShadowViewMutation mutation); ++ void insertChildren(std::vector> &newChildren); ++ void insertUnflattenedChildren( ++ std::vector> &newChildren); ++ virtual bool isMutationMode(); ++ explicit Node(const Tag tag) : tag(tag) {} ++ Node(Node &&node) ++ : children(std::move(node.children)), ++ unflattenedChildren(std::move(node.unflattenedChildren)), ++ tag(node.tag) {} ++ Node(Node &node) ++ : children(node.children), ++ unflattenedChildren(node.unflattenedChildren), ++ tag(node.tag) {} ++ virtual ~Node() = default; ++}; ++ ++/** ++ Represents a view that was removed from the ShadowTree ++ */ ++struct MutationNode : public Node { ++ ShadowViewMutation mutation; ++ std::unordered_set animatedChildren; ++ ExitingState state = UNDEFINED; ++ explicit MutationNode(ShadowViewMutation &mutation) ++ : Node(mutation.oldChildShadowView.tag), mutation(mutation) {} ++ MutationNode(ShadowViewMutation &mutation, Node &&node) ++ : Node(std::move(node)), mutation(mutation) {} ++ bool isMutationMode() override; ++}; ++ ++struct SurfaceManager { ++ mutable std::unordered_map< ++ SurfaceId, ++ std::shared_ptr>> ++ props_; ++ mutable std::unordered_map windows_; ++ ++ std::unordered_map &getUpdateMap(SurfaceId surfaceId); ++ void ++ updateWindow(SurfaceId surfaceId, double windowWidth, double windowHeight); ++ Rect getWindow(SurfaceId surfaceId); ++}; ++ ++static inline void updateLayoutMetrics( ++ LayoutMetrics &layoutMetrics, ++ Frame &frame) { ++ // we use optional's here to avoid overwriting non-animated values ++ if (frame.width) { ++ layoutMetrics.frame.size.width = *frame.width; ++ } ++ if (frame.height) { ++ layoutMetrics.frame.size.height = *frame.height; ++ } ++ if (frame.x) { ++ layoutMetrics.frame.origin.x = *frame.x; ++ } ++ if (frame.y) { ++ layoutMetrics.frame.origin.y = *frame.y; ++ } ++} ++ ++static inline bool isRNSScreen(std::shared_ptr node) { ++ return !std::strcmp( ++ node->mutation.oldChildShadowView.componentName, ++ "RNSScreenStack") || ++ !std::strcmp( ++ node->mutation.oldChildShadowView.componentName, "RNSScreen"); ++} ++ ++static inline bool hasLayoutChanged(const ShadowViewMutation &mutation) { ++ return mutation.oldChildShadowView.layoutMetrics.frame != ++ mutation.newChildShadowView.layoutMetrics.frame; ++} ++ ++static inline void mergeAndSwap( ++ std::vector> &A, ++ std::vector> &B) { ++ std::vector> merged; ++ auto it1 = A.begin(), it2 = B.begin(); ++ while (it1 != A.end() && it2 != B.end()) { ++ if ((*it1)->mutation.index < (*it2)->mutation.index) { ++ merged.push_back(*it1); ++ it1++; ++ } else { ++ merged.push_back(*it2); ++ it2++; ++ } ++ } ++ while (it1 != A.end()) { ++ merged.push_back(*it1); ++ it1++; ++ } ++ while (it2 != B.end()) { ++ merged.push_back(*it2); ++ it2++; ++ } ++ std::swap(A, merged); ++} ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/NativeReanimatedModule.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/NativeReanimatedModule.h +new file mode 100644 +index 0000000..f44d6ff +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/NativeReanimatedModule.h +@@ -0,0 +1,247 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#include ++#include ++#include ++#endif // RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#endif // RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class NativeReanimatedModule : public NativeReanimatedModuleSpec { ++ public: ++ NativeReanimatedModule( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsScheduler, ++ const std::shared_ptr &jsQueue, ++ const std::shared_ptr &uiScheduler, ++ const PlatformDepMethodsHolder &platformDepMethodsHolder, ++ const std::string &valueUnpackerCode, ++ const bool isBridgeless, ++ const bool isReducedMotion); ++ ++ ~NativeReanimatedModule(); ++ ++ jsi::Value makeShareableClone( ++ jsi::Runtime &rt, ++ const jsi::Value &value, ++ const jsi::Value &shouldRetainRemote, ++ const jsi::Value &nativeStateSource) override; ++ ++ void scheduleOnUI(jsi::Runtime &rt, const jsi::Value &worklet) override; ++ jsi::Value executeOnUIRuntimeSync(jsi::Runtime &rt, const jsi::Value &worklet) ++ override; ++ ++ jsi::Value createWorkletRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &initializer) override; ++ jsi::Value scheduleOnRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &workletRuntimeValue, ++ const jsi::Value &shareableWorkletValue) override; ++ ++ jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) override; ++ void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) override; ++ ++ jsi::Value getViewProp( ++ jsi::Runtime &rt, ++#ifdef RCT_NEW_ARCH_ENABLED ++ const jsi::Value &shadowNodeWrapper, ++#else ++ const jsi::Value &viewTag, ++#endif ++ const jsi::Value &propName, ++ const jsi::Value &callback) override; ++ ++ jsi::Value enableLayoutAnimations(jsi::Runtime &rt, const jsi::Value &config) ++ override; ++ jsi::Value configureProps( ++ jsi::Runtime &rt, ++ const jsi::Value &uiProps, ++ const jsi::Value &nativeProps) override; ++ jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) override; ++ void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) override; ++ ++ void onRender(double timestampMs); ++ ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ ++ void maybeRequestRender(); ++ ++ bool handleEvent( ++ const std::string &eventName, ++ const int emitterReactTag, ++ const jsi::Value &payload, ++ double currentTime); ++ ++ inline std::shared_ptr getJSLogger() const { ++ return jsLogger_; ++ } ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ bool handleRawEvent(const RawEvent &rawEvent, double currentTime); ++ ++ void updateProps(jsi::Runtime &rt, const jsi::Value &operations); ++ ++ void removeFromPropsRegistry(jsi::Runtime &rt, const jsi::Value &viewTags); ++ ++ void performOperations(); ++ ++ void dispatchCommand( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeValue, ++ const jsi::Value &commandNameValue, ++ const jsi::Value &argsValue); ++ ++ jsi::String obtainProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName); ++ ++ jsi::Value measure(jsi::Runtime &rt, const jsi::Value &shadowNodeValue); ++ ++ void initializeFabric(const std::shared_ptr &uiManager); ++ ++ void initializeLayoutAnimationsProxy(); ++ ++ std::string obtainPropFromShadowNode( ++ jsi::Runtime &rt, ++ const std::string &propName, ++ const ShadowNode::Shared &shadowNode); ++#endif ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) override; ++ void unregisterSensor(jsi::Runtime &rt, const jsi::Value &sensorId) override; ++ ++ void cleanupSensors(); ++ ++ jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) override; ++ void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) override; ++ ++ inline LayoutAnimationsManager &layoutAnimationsManager() { ++ return *layoutAnimationsManager_; ++ } ++ ++ inline jsi::Runtime &getUIRuntime() const { ++ return uiWorkletRuntime_->getJSIRuntime(); ++ } ++ ++ inline bool isBridgeless() const { ++ return isBridgeless_; ++ } ++ ++ inline bool isReducedMotion() const { ++ return isReducedMotion_; ++ } ++ ++ private: ++ void commonInit(const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ++ void requestAnimationFrame(jsi::Runtime &rt, const jsi::Value &callback); ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ bool isThereAnyLayoutProp(jsi::Runtime &rt, const jsi::Object &props); ++ jsi::Value filterNonAnimatableProps( ++ jsi::Runtime &rt, ++ const jsi::Value &props); ++#endif // RCT_NEW_ARCH_ENABLED ++ ++ const bool isBridgeless_; ++ const bool isReducedMotion_; ++ const std::shared_ptr jsQueue_; ++ const std::shared_ptr jsScheduler_; ++ const std::shared_ptr uiScheduler_; ++ std::shared_ptr uiWorkletRuntime_; ++ std::string valueUnpackerCode_; ++ ++ std::unique_ptr eventHandlerRegistry_; ++ const RequestRenderFunction requestRender_; ++ std::vector> frameCallbacks_; ++ volatile bool renderRequested_{false}; ++ const std::function onRenderCallback_; ++ AnimatedSensorModule animatedSensorModule_; ++ const std::shared_ptr jsLogger_; ++ std::shared_ptr layoutAnimationsManager_; ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ const SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction_; ++ ++ std::unordered_set nativePropNames_; // filled by configureProps ++ std::unordered_set ++ animatablePropNames_; // filled by configureProps ++ std::shared_ptr uiManager_; ++ std::shared_ptr layoutAnimationsProxy_; ++ ++ // After app reload, surfaceId on iOS is still 1 but on Android it's 11. ++ // We can store surfaceId of the most recent ShadowNode as a workaround. ++ SurfaceId surfaceId_ = -1; ++ ++ std::vector>> ++ operationsInBatch_; // TODO: refactor std::pair to custom struct ++ ++ std::shared_ptr propsRegistry_; ++ std::shared_ptr commitHook_; ++ std::shared_ptr mountHook_; ++ ++ std::vector tagsToRemove_; // from `propsRegistry_` ++#else ++ const ObtainPropFunction obtainPropFunction_; ++ const ConfigurePropsFunction configurePropsPlatformFunction_; ++ const UpdatePropsFunction updatePropsFunction_; ++#endif ++ ++ const KeyboardEventSubscribeFunction subscribeForKeyboardEventsFunction_; ++ const KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEventsFunction_; ++ ++#ifndef NDEBUG ++ SingleInstanceChecker singleInstanceChecker_; ++#endif ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/NativeReanimatedModuleSpec.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/NativeReanimatedModuleSpec.h +new file mode 100644 +index 0000000..89a6c20 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/NativeModules/NativeReanimatedModuleSpec.h +@@ -0,0 +1,106 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++class JSI_EXPORT NativeReanimatedModuleSpec : public TurboModule { ++ protected: ++ explicit NativeReanimatedModuleSpec( ++ const std::shared_ptr &jsInvoker); ++ ++ public: ++ // SharedValue ++ virtual jsi::Value makeShareableClone( ++ jsi::Runtime &rt, ++ const jsi::Value &value, ++ const jsi::Value &shouldRetainRemote, ++ const jsi::Value &nativeStateSource) = 0; ++ ++ // Scheduling ++ virtual void scheduleOnUI(jsi::Runtime &rt, const jsi::Value &worklet) = 0; ++ virtual jsi::Value executeOnUIRuntimeSync( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet) = 0; ++ ++ // Worklet runtime ++ virtual jsi::Value createWorkletRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &initializer) = 0; ++ virtual jsi::Value scheduleOnRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &workletRuntimeValue, ++ const jsi::Value &shareableWorkletValue) = 0; ++ ++ // events ++ virtual jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) = 0; ++ virtual void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) = 0; ++ ++ // views ++ virtual jsi::Value getViewProp( ++ jsi::Runtime &rt, ++#ifdef RCT_NEW_ARCH_ENABLED ++ const jsi::Value &shadowNodeWrapper, ++#else ++ const jsi::Value &viewTag, ++#endif ++ const jsi::Value &propName, ++ const jsi::Value &callback) = 0; ++ ++ // sensors ++ virtual jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) = 0; ++ virtual void unregisterSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorId) = 0; ++ ++ // keyboard ++ virtual jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) = 0; ++ virtual void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) = 0; ++ ++ // other ++ virtual jsi::Value enableLayoutAnimations( ++ jsi::Runtime &rt, ++ const jsi::Value &config) = 0; ++ virtual jsi::Value configureProps( ++ jsi::Runtime &rt, ++ const jsi::Value &uiProps, ++ const jsi::Value &nativeProps) = 0; ++ ++ // layout animations ++ virtual jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) = 0; ++ ++ virtual void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) = 0; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +new file mode 100644 +index 0000000..ff18f2c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class RNRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &nativeReanimatedModule); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.h +new file mode 100644 +index 0000000..da7f2a9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.h +@@ -0,0 +1,14 @@ ++#pragma once ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class ReanimatedWorkletRuntimeDecorator { ++ public: ++ static void decorate(jsi::Runtime &rt); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +new file mode 100644 +index 0000000..9f1e478 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +@@ -0,0 +1,35 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++using RequestAnimationFrameFunction = ++ std::function; ++ ++class UIRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &uiRuntime, ++#ifdef RCT_NEW_ARCH_ENABLED ++ const RemoveFromPropsRegistryFunction removeFromPropsRegistry, ++#else ++ const ScrollToFunction scrollTo, ++#endif ++ const ObtainPropFunction obtainPropFunction, ++ const UpdatePropsFunction updateProps, ++ const MeasureFunction measure, ++ const DispatchCommandFunction dispatchCommand, ++ const RequestAnimationFrameFunction requestAnimationFrame, ++ const GetAnimationTimestampFunction getAnimationTimestamp, ++ const SetGestureStateFunction setGestureState, ++ const ProgressLayoutAnimationFunction progressLayoutAnimation, ++ const EndLayoutAnimationFunction endLayoutAnimation, ++ const MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueue); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/CollectionUtils.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/CollectionUtils.h +new file mode 100644 +index 0000000..9bf9c03 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/CollectionUtils.h +@@ -0,0 +1,14 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated { ++namespace collection { ++ ++template ++inline bool contains(const CollectionType &collection, const ValueType &value) { ++ return collection.find(value) != collection.end(); ++} ++ ++} // namespace collection ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeaturesConfig.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeaturesConfig.h +new file mode 100644 +index 0000000..c07e824 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/FeaturesConfig.h +@@ -0,0 +1,19 @@ ++#pragma once ++#include ++ ++namespace reanimated { ++ ++class FeaturesConfig { ++ public: ++ static inline bool isLayoutAnimationEnabled() { ++ return _isLayoutAnimationEnabled; ++ } ++ static inline void setLayoutAnimationEnabled(bool isLayoutAnimationEnabled) { ++ _isLayoutAnimationEnabled = isLayoutAnimationEnabled; ++ } ++ ++ private: ++ static bool _isLayoutAnimationEnabled; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h +new file mode 100644 +index 0000000..f5aa89f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformDepMethodsHolder.h +@@ -0,0 +1,102 @@ ++#pragma once ++ ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#endif ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++using namespace react; ++#endif ++ ++namespace reanimated { ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++using SynchronouslyUpdateUIPropsFunction = ++ std::function; ++using UpdatePropsFunction = ++ std::function; ++using RemoveFromPropsRegistryFunction = ++ std::function; ++using ObtainPropFunction = std::function; ++using DispatchCommandFunction = std::function; ++using MeasureFunction = std::function< ++ jsi::Value(jsi::Runtime &rt, const jsi::Value &shadowNodeValue)>; ++ ++#else ++ ++using UpdatePropsFunction = ++ std::function; ++using ScrollToFunction = std::function; ++using DispatchCommandFunction = std::function; ++using MeasureFunction = ++ std::function>(int)>; ++using ObtainPropFunction = ++ std::function; ++ ++#endif // RCT_NEW_ARCH_ENABLED ++ ++using RequestRenderFunction = ++ std::function, jsi::Runtime &)>; ++using GetAnimationTimestampFunction = std::function; ++ ++using ProgressLayoutAnimationFunction = ++ std::function; ++using EndLayoutAnimationFunction = std::function; ++ ++using RegisterSensorFunction = ++ std::function)>; ++using UnregisterSensorFunction = std::function; ++using SetGestureStateFunction = std::function; ++using ConfigurePropsFunction = std::function; ++using KeyboardEventSubscribeFunction = ++ std::function, bool, bool)>; ++using KeyboardEventUnsubscribeFunction = std::function; ++using MaybeFlushUIUpdatesQueueFunction = std::function; ++ ++struct PlatformDepMethodsHolder { ++ RequestRenderFunction requestRender; ++#ifdef RCT_NEW_ARCH_ENABLED ++ SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction; ++#else ++ UpdatePropsFunction updatePropsFunction; ++ ScrollToFunction scrollToFunction; ++ DispatchCommandFunction dispatchCommandFunction; ++ MeasureFunction measureFunction; ++ ConfigurePropsFunction configurePropsFunction; ++ ObtainPropFunction obtainPropFunction; ++#endif ++ GetAnimationTimestampFunction getAnimationTimestamp; ++ ProgressLayoutAnimationFunction progressLayoutAnimation; ++ EndLayoutAnimationFunction endLayoutAnimation; ++ RegisterSensorFunction registerSensor; ++ UnregisterSensorFunction unregisterSensor; ++ SetGestureStateFunction setGestureStateFunction; ++ KeyboardEventSubscribeFunction subscribeForKeyboardEvents; ++ KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEvents; ++ MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueueFunction; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformLogger.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformLogger.h +new file mode 100644 +index 0000000..37db18e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/PlatformLogger.h +@@ -0,0 +1,16 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated { ++ ++class PlatformLogger { ++ public: ++ static void log(const char *str); ++ static void log(const std::string &str); ++ static void log(const double d); ++ static void log(const int i); ++ static void log(const bool b); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/SingleInstanceChecker.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/SingleInstanceChecker.h +new file mode 100644 +index 0000000..2a183e8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/Tools/SingleInstanceChecker.h +@@ -0,0 +1,71 @@ ++#pragma once ++ ++#ifndef NDEBUG ++ ++#include ++ ++#include ++#include ++#include ++ ++#ifdef ANDROID ++#include ++#endif ++ ++namespace reanimated { ++ ++// This is a class that counts how many instances of a different class there ++// are. It is meant only to be used with classes that should only have one ++// instance. ++ ++template ++class SingleInstanceChecker { ++ public: ++ SingleInstanceChecker(); ++ ~SingleInstanceChecker(); ++ ++ private: ++ void assertWithMessage(bool condition, std::string message) { ++ if (!condition) { ++#ifdef ANDROID ++ __android_log_print( ++ ANDROID_LOG_WARN, "Reanimated", "%s", message.c_str()); ++#else ++ std::cerr << "[Reanimated] " << message << std::endl; ++#endif ++ ++#ifdef IS_REANIMATED_EXAMPLE_APP ++ assert(false); ++#endif ++ } ++ } ++ ++ // A static field will exist separately for every class template. ++ // This has to be inline for automatic initialization. ++ inline static std::atomic instanceCount_; ++}; ++ ++template ++SingleInstanceChecker::SingleInstanceChecker() { ++ int status = 0; ++ std::string className = ++ __cxxabiv1::__cxa_demangle(typeid(T).name(), nullptr, nullptr, &status); ++ ++ // Only one instance should exist, but it is possible for two instances ++ // to co-exist during a reload. ++ assertWithMessage( ++ instanceCount_ <= 1, ++ "[Reanimated] More than one instance of " + className + ++ " present. This may indicate a memory leak due to a retain cycle."); ++ ++ instanceCount_++; ++} ++ ++template ++SingleInstanceChecker::~SingleInstanceChecker() { ++ instanceCount_--; ++} ++ ++} // namespace reanimated ++ ++#endif // NDEBUG +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AndroidUIScheduler.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AndroidUIScheduler.h +new file mode 100644 +index 0000000..e9e7c94 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/AndroidUIScheduler.h +@@ -0,0 +1,44 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++class AndroidUIScheduler : public jni::HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/AndroidUIScheduler;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis); ++ static void registerNatives(); ++ ++ std::shared_ptr getUIScheduler() { ++ return uiScheduler_; ++ } ++ ++ void scheduleTriggerOnUI(); ++ ++ private: ++ friend HybridBase; ++ ++ void triggerUI(); ++ ++ jni::global_ref javaPart_; ++ std::shared_ptr uiScheduler_; ++ ++ explicit AndroidUIScheduler( ++ jni::alias_ref jThis); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/JNIHelper.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/JNIHelper.h +new file mode 100644 +index 0000000..4be3555 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/JNIHelper.h +@@ -0,0 +1,30 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::jni; ++using namespace facebook; ++using namespace react; ++ ++struct JNIHelper { ++ struct PropsMap : jni::JavaClass> { ++ static constexpr auto kJavaDescriptor = "Ljava/util/HashMap;"; ++ ++ static local_ref create(); ++ void put(const std::string &key, jni::local_ref object); ++ }; ++ ++ static jni::local_ref ConvertToPropsMap( ++ jsi::Runtime &rt, ++ const jsi::Object &props); ++}; ++ ++}; // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/LayoutAnimations.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/LayoutAnimations.h +new file mode 100644 +index 0000000..87e874e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/LayoutAnimations.h +@@ -0,0 +1,89 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::jni; ++using namespace facebook; ++ ++class LayoutAnimations : public jni::HybridClass { ++ using AnimationStartingBlock = ++ std::function>)>; ++ using HasAnimationBlock = std::function; ++ using ShouldAnimateExitingBlock = std::function; ++#ifndef NDEBUG ++ using CheckDuplicateSharedTag = std::function; ++#endif ++ using ClearAnimationConfigBlock = std::function; ++ using CancelAnimationBlock = std::function; ++ using FindPrecedingViewTagForTransitionBlock = std::function; ++ using GetSharedGroupBlock = std::function(const int)>; ++ ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/layoutReanimation/LayoutAnimations;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis); ++ static void registerNatives(); ++ ++ void startAnimationForTag( ++ int tag, ++ int type, ++ alias_ref> values); ++ bool hasAnimationForTag(int tag, int type); ++ bool shouldAnimateExiting(int tag, bool shouldAnimate); ++ bool isLayoutAnimationEnabled(); ++ ++ void setAnimationStartingBlock(AnimationStartingBlock animationStartingBlock); ++ void setHasAnimationBlock(HasAnimationBlock hasAnimationBlock); ++ void setShouldAnimateExitingBlock( ++ ShouldAnimateExitingBlock shouldAnimateExitingBlock); ++#ifndef NDEBUG ++ void setCheckDuplicateSharedTag( ++ CheckDuplicateSharedTag checkDuplicateSharedTag); ++ void checkDuplicateSharedTag(int viewTag, int screenTag); ++#endif ++ void setClearAnimationConfigBlock( ++ ClearAnimationConfigBlock clearAnimationConfigBlock); ++ void setCancelAnimationForTag(CancelAnimationBlock cancelAnimationBlock); ++ void setFindPrecedingViewTagForTransition( ++ FindPrecedingViewTagForTransitionBlock ++ findPrecedingViewTagForTransitionBlock); ++ void setGetSharedGroupBlock(const GetSharedGroupBlock getSharedGroupBlock); ++ ++ void progressLayoutAnimation( ++ int tag, ++ const jni::local_ref &updates, ++ bool isSharedTransition); ++ void endLayoutAnimation(int tag, bool removeView); ++ void clearAnimationConfigForTag(int tag); ++ void cancelAnimationForTag(int tag); ++ int findPrecedingViewTagForTransition(int tag); ++ jni::local_ref getSharedGroup(const int tag); ++ ++ private: ++ friend HybridBase; ++ jni::global_ref javaPart_; ++ AnimationStartingBlock animationStartingBlock_; ++ HasAnimationBlock hasAnimationBlock_; ++ ShouldAnimateExitingBlock shouldAnimateExitingBlock_; ++ ClearAnimationConfigBlock clearAnimationConfigBlock_; ++ CancelAnimationBlock cancelAnimationBlock_; ++ FindPrecedingViewTagForTransitionBlock ++ findPrecedingViewTagForTransitionBlock_; ++ GetSharedGroupBlock getSharedGroupBlock_; ++#ifndef NDEBUG ++ CheckDuplicateSharedTag checkDuplicateSharedTag_; ++#endif ++ ++ explicit LayoutAnimations( ++ jni::alias_ref jThis); ++}; ++ ++}; // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h +new file mode 100644 +index 0000000..462eecb +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/include/reanimated/android/NativeProxy.h +@@ -0,0 +1,310 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#include ++#if REACT_NATIVE_MINOR_VERSION >= 74 ++#include ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 ++#endif // RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class AnimationFrameCallback : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/AnimationFrameCallback;"; ++ ++ void onAnimationFrame(double timestampMs) { ++ callback_(timestampMs); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod( ++ "onAnimationFrame", AnimationFrameCallback::onAnimationFrame), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit AnimationFrameCallback(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++class EventHandler : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/EventHandler;"; ++ ++ void receiveEvent( ++ jni::alias_ref eventKey, ++ jint emitterReactTag, ++ jni::alias_ref event) { ++ handler_(eventKey, emitterReactTag, event); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("receiveEvent", EventHandler::receiveEvent), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit EventHandler(std::function, ++ jint emitterReactTag, ++ jni::alias_ref)> handler) ++ : handler_(std::move(handler)) {} ++ ++ std::function< ++ void(jni::alias_ref, jint, jni::alias_ref)> ++ handler_; ++}; ++ ++class SensorSetter : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/SensorSetter;"; ++ ++ void sensorSetter(jni::alias_ref value, int orientationDegrees) { ++ size_t size = value->size(); ++ auto elements = value->getRegion(0, size); ++ double array[7]; ++ for (size_t i = 0; i < size; i++) { ++ array[i] = elements[i]; ++ } ++ callback_(array, orientationDegrees); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("sensorSetter", SensorSetter::sensorSetter), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit SensorSetter(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++class KeyboardWorkletWrapper : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/keyboard/KeyboardWorkletWrapper;"; ++ ++ void invoke(int keyboardState, int height) { ++ callback_(keyboardState, height); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("invoke", KeyboardWorkletWrapper::invoke), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit KeyboardWorkletWrapper(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++class NativeProxy : public jni::HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/NativeProxy;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis, ++ jlong jsContext, ++ jni::alias_ref ++ jsCallInvokerHolder, ++ jni::alias_ref androidUiScheduler, ++ jni::alias_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++#ifdef RCT_NEW_ARCH_ENABLED ++ jni::alias_ref ++ fabricUIManager, ++#endif ++ const std::string &valueUnpackerCode); ++ ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ static jni::local_ref initHybridBridgeless( ++ jni::alias_ref jThis, ++ jlong jsContext, ++ jni::alias_ref runtimeExecutorHolder, ++ jni::alias_ref androidUiScheduler, ++ jni::alias_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++ jni::alias_ref ++ fabricUIManager, ++ const std::string &valueUnpackerCode); ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ static void registerNatives(); ++ ++ ~NativeProxy(); ++ ++ private: ++ friend HybridBase; ++ jni::global_ref javaPart_; ++ jsi::Runtime *rnRuntime_; ++ std::shared_ptr nativeReanimatedModule_; ++ jni::global_ref layoutAnimations_; ++#ifndef NDEBUG ++ void checkJavaVersion(jsi::Runtime &); ++ void injectCppVersion(); ++#endif // NDEBUG ++#ifdef RCT_NEW_ARCH_ENABLED ++ // removed temporarily, event listener mechanism needs to be fixed on RN side ++ // std::shared_ptr reactScheduler_; ++ // std::shared_ptr eventListener_; ++#endif // RCT_NEW_ARCH_ENABLED ++ void installJSIBindings(); ++#ifdef RCT_NEW_ARCH_ENABLED ++ void synchronouslyUpdateUIProps( ++ jsi::Runtime &rt, ++ Tag viewTag, ++ const jsi::Object &props); ++#endif ++ PlatformDepMethodsHolder getPlatformDependentMethods(); ++ void setupLayoutAnimations(); ++ ++ double getAnimationTimestamp(); ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ void performOperations(); ++ bool getIsReducedMotion(); ++ void requestRender(std::function onRender, jsi::Runtime &rt); ++ void registerEventHandler(); ++ void maybeFlushUIUpdatesQueue(); ++ void setGestureState(int handlerTag, int newState); ++ int registerSensor( ++ int sensorType, ++ int interval, ++ int iosReferenceFrame, ++ std::function setter); ++ void unregisterSensor(int sensorId); ++ int subscribeForKeyboardEvents( ++ std::function callback, ++ bool isStatusBarTranslucent, ++ bool isNavigationBarTranslucent); ++ void unsubscribeFromKeyboardEvents(int listenerId); ++#ifdef RCT_NEW_ARCH_ENABLED ++ // nothing ++#else ++ jsi::Value ++ obtainProp(jsi::Runtime &rt, const int viewTag, const jsi::Value &propName); ++ void configureProps( ++ jsi::Runtime &rt, ++ const jsi::Value &uiProps, ++ const jsi::Value &nativeProps); ++ void updateProps(jsi::Runtime &rt, const jsi::Value &operations); ++ void scrollTo(int viewTag, double x, double y, bool animated); ++ void dispatchCommand( ++ jsi::Runtime &rt, ++ const int viewTag, ++ const jsi::Value &commandNameValue, ++ const jsi::Value &argsValue); ++ std::vector> measure(int viewTag); ++#endif ++ void handleEvent( ++ jni::alias_ref eventName, ++ jint emitterReactTag, ++ jni::alias_ref event); ++ ++ void progressLayoutAnimation( ++ jsi::Runtime &rt, ++ int tag, ++ const jsi::Object &newProps, ++ bool isSharedTransition); ++ ++ /*** ++ * Wraps a method of `NativeProxy` in a function object capturing `this` ++ * @tparam TReturn return type of passed method ++ * @tparam TParams paramater types of passed method ++ * @param methodPtr pointer to method to be wrapped ++ * @return a function object with the same signature as the method, calling ++ * that method on `this` ++ */ ++ template ++ std::function bindThis( ++ TReturn (NativeProxy::*methodPtr)(TParams...)) { ++ return [this, methodPtr](TParams &&...args) { ++ return (this->*methodPtr)(std::forward(args)...); ++ }; ++ } ++ ++ template ++ JMethod getJniMethod(std::string const &methodName) { ++ return javaPart_->getClass()->getMethod(methodName.c_str()); ++ } ++ ++ explicit NativeProxy( ++ jni::alias_ref jThis, ++ jsi::Runtime *rnRuntime, ++ const std::shared_ptr &jsCallInvoker, ++ const std::shared_ptr &uiScheduler, ++ jni::global_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++#ifdef RCT_NEW_ARCH_ENABLED ++ jni::alias_ref ++ fabricUIManager, ++#endif ++ const std::string &valueUnpackerCode); ++ ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ explicit NativeProxy( ++ jni::alias_ref jThis, ++ jsi::Runtime *rnRuntime, ++ RuntimeExecutor runtimeExecutor, ++ const std::shared_ptr &uiScheduler, ++ jni::global_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++ jni::alias_ref ++ fabricUIManager, ++ const std::string &valueUnpackerCode); ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ void commonInit(jni::alias_ref ++ &fabricUIManager); ++#endif // RCT_NEW_ARCH_ENABLED ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so +new file mode 100755 +index 0000000..58eee6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json +new file mode 100644 +index 0000000..c4d68de +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86_64", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so +new file mode 100755 +index 0000000..6a5be3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/libs/android.x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/reanimated/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Registries/EventHandlerRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Registries/EventHandlerRegistry.h +new file mode 100644 +index 0000000..332bf6f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Registries/EventHandlerRegistry.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletEventHandler; ++ ++class EventHandlerRegistry { ++ std::map< ++ std::pair, ++ std::unordered_map>> ++ eventMappingsWithTag; ++ std::map< ++ std::string, ++ std::unordered_map>> ++ eventMappingsWithoutTag; ++ std::map> eventHandlers; ++ std::mutex instanceMutex; ++ ++ public: ++ void registerEventHandler( ++ const std::shared_ptr &eventHandler); ++ void unregisterEventHandler(const uint64_t id); ++ ++ void processEvent( ++ const std::shared_ptr &uiWorkletRuntime, ++ const double eventTimestamp, ++ const std::string &eventName, ++ const int emitterReactTag, ++ const jsi::Value &eventPayload); ++ ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Registries/WorkletRuntimeRegistry.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Registries/WorkletRuntimeRegistry.h +new file mode 100644 +index 0000000..2db90d5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Registries/WorkletRuntimeRegistry.h +@@ -0,0 +1,39 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletRuntimeRegistry { ++ private: ++ static std::set registry_; ++ static std::mutex mutex_; // Protects `registry_`. ++ ++ WorkletRuntimeRegistry() {} // private ctor ++ ++ static void registerRuntime(jsi::Runtime &runtime) { ++ std::lock_guard lock(mutex_); ++ registry_.insert(&runtime); ++ } ++ ++ static void unregisterRuntime(jsi::Runtime &runtime) { ++ std::lock_guard lock(mutex_); ++ registry_.erase(&runtime); ++ } ++ ++ friend class WorkletRuntimeCollector; ++ ++ public: ++ static bool isRuntimeAlive(jsi::Runtime *runtime) { ++ assert(runtime != nullptr); ++ std::lock_guard lock(mutex_); ++ return registry_.find(runtime) != registry_.end(); ++ } ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/SharedItems/Shareables.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/SharedItems/Shareables.h +new file mode 100644 +index 0000000..8c2f903 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/SharedItems/Shareables.h +@@ -0,0 +1,363 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++jsi::Function getValueUnpacker(jsi::Runtime &rt); ++ ++#ifndef NDEBUG ++jsi::Function getCallGuard(jsi::Runtime &rt); ++#endif // NDEBUG ++ ++// If possible, please use `WorkletRuntime::runGuarded` instead. ++template ++inline jsi::Value runOnRuntimeGuarded( ++ jsi::Runtime &rt, ++ const jsi::Value &function, ++ Args &&...args) { ++ // We only use callGuard in debug mode, otherwise we call the provided ++ // function directly. CallGuard provides a way of capturing exceptions in ++ // JavaScript and propagating them to the main React Native thread such that ++ // they can be presented using RN's LogBox. ++#ifndef NDEBUG ++ return getCallGuard(rt).call(rt, function, args...); ++#else ++ return function.asObject(rt).asFunction(rt).call(rt, args...); ++#endif ++} ++ ++inline void cleanupIfRuntimeExists( ++ jsi::Runtime *rt, ++ std::unique_ptr &value) { ++ if (rt != nullptr && !WorkletRuntimeRegistry::isRuntimeAlive(rt)) { ++ // The below use of unique_ptr.release prevents the smart pointer from ++ // calling the destructor of the kept object. This effectively results in ++ // leaking some memory. We do this on purpose, as sometimes we would keep ++ // references to JSI objects past the lifetime of its runtime (e.g., ++ // shared values references from the RN VM holds reference to JSI objects ++ // on the UI runtime). When the UI runtime is terminated, the orphaned JSI ++ // objects would crash the app when their destructors are called, because ++ // they call into a memory that's managed by the terminated runtime. We ++ // accept the tradeoff of leaking memory here, as it has a limited impact. ++ // This scenario can only occur when the React instance is torn down which ++ // happens in development mode during app reloads, or in production when ++ // the app is being shut down gracefully by the system. An alternative ++ // solution would require us to keep track of all JSI values that are in ++ // use which would require additional data structure and compute spent on ++ // bookkeeping that only for the sake of destroying the values in time ++ // before the runtime is terminated. Note that the underlying memory that ++ // jsi::Value refers to is managed by the VM and gets freed along with the ++ // runtime. ++ value.release(); ++ } ++} ++ ++class Shareable { ++ public: ++ virtual jsi::Value toJSValue(jsi::Runtime &rt) = 0; ++ ++ virtual ~Shareable(); ++ ++ enum ValueType { ++ UndefinedType, ++ NullType, ++ BooleanType, ++ NumberType, ++ // SymbolType, TODO ++ BigIntType, ++ StringType, ++ ObjectType, ++ ArrayType, ++ WorkletType, ++ RemoteFunctionType, ++ HandleType, ++ HostObjectType, ++ HostFunctionType, ++ ArrayBufferType, ++ }; ++ ++ explicit Shareable(ValueType valueType) : valueType_(valueType) {} ++ ++ inline ValueType valueType() const { ++ return valueType_; ++ } ++ ++ static std::shared_ptr undefined(); ++ ++ protected: ++ ValueType valueType_; ++}; ++ ++template ++class RetainingShareable : virtual public BaseClass { ++ private: ++ jsi::Runtime *primaryRuntime_; ++ jsi::Runtime *secondaryRuntime_; ++ std::unique_ptr secondaryValue_; ++ ++ public: ++ template ++ explicit RetainingShareable(jsi::Runtime &rt, Args &&...args) ++ : BaseClass(rt, std::forward(args)...), primaryRuntime_(&rt) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt); ++ ++ ~RetainingShareable() { ++ cleanupIfRuntimeExists(secondaryRuntime_, secondaryValue_); ++ } ++}; ++ ++class ShareableJSRef : public jsi::HostObject { ++ private: ++ const std::shared_ptr value_; ++ ++ public: ++ explicit ShareableJSRef(const std::shared_ptr &value) ++ : value_(value) {} ++ ++ virtual ~ShareableJSRef(); ++ ++ std::shared_ptr value() const { ++ return value_; ++ } ++ ++ static jsi::Object newHostObject( ++ jsi::Runtime &rt, ++ const std::shared_ptr &value) { ++ return jsi::Object::createFromHostObject( ++ rt, std::make_shared(value)); ++ } ++}; ++ ++jsi::Value makeShareableClone( ++ jsi::Runtime &rt, ++ const jsi::Value &value, ++ const jsi::Value &shouldRetainRemote, ++ const jsi::Value &nativeStateSource); ++ ++std::shared_ptr extractShareableOrThrow( ++ jsi::Runtime &rt, ++ const jsi::Value &maybeShareableValue, ++ const std::string &errorMessage = ++ "[Reanimated] Expecting the object to be of type ShareableJSRef."); ++ ++template ++std::shared_ptr extractShareableOrThrow( ++ jsi::Runtime &rt, ++ const jsi::Value &shareableRef, ++ const std::string &errorMessage = ++ "[Reanimated] Provided shareable object is of an incompatible type.") { ++ auto res = std::dynamic_pointer_cast( ++ extractShareableOrThrow(rt, shareableRef, errorMessage)); ++ if (!res) { ++ throw std::runtime_error(errorMessage); ++ } ++ return res; ++} ++ ++class ShareableArray : public Shareable { ++ public: ++ ShareableArray(jsi::Runtime &rt, const jsi::Array &array); ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ std::vector> data_; ++}; ++ ++class ShareableObject : public Shareable { ++ public: ++ ShareableObject(jsi::Runtime &rt, const jsi::Object &object); ++ ++#if defined(USE_HERMES) || REACT_NATIVE_MINOR_VERSION >= 74 ++#define SUPPORTS_NATIVE_STATE 1 ++#else ++#define SUPPORTS_NATIVE_STATE 0 ++#endif ++ ++#if SUPPORTS_NATIVE_STATE ++ ShareableObject( ++ jsi::Runtime &rt, ++ const jsi::Object &object, ++ const jsi::Value &nativeStateSource); ++#endif // SUPPORTS_NATIVE_STATE ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ std::vector>> data_; ++#if SUPPORTS_NATIVE_STATE ++ std::shared_ptr nativeState_; ++#endif // SUPPORTS_NATIVE_STATE ++}; ++ ++class ShareableHostObject : public Shareable { ++ public: ++ ShareableHostObject( ++ jsi::Runtime &, ++ const std::shared_ptr &hostObject) ++ : Shareable(HostObjectType), hostObject_(hostObject) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::shared_ptr hostObject_; ++}; ++ ++class ShareableHostFunction : public Shareable { ++ public: ++ ShareableHostFunction(jsi::Runtime &rt, jsi::Function function) ++ : Shareable(HostFunctionType), ++ hostFunction_( ++ (assert(function.isHostFunction(rt)), ++ function.getHostFunction(rt))), ++ name_(function.getProperty(rt, "name").asString(rt).utf8(rt)), ++ paramCount_(function.getProperty(rt, "length").asNumber()) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const jsi::HostFunctionType hostFunction_; ++ const std::string name_; ++ const unsigned int paramCount_; ++}; ++ ++class ShareableArrayBuffer : public Shareable { ++ public: ++ ShareableArrayBuffer( ++ jsi::Runtime &rt, ++#if REACT_NATIVE_MINOR_VERSION >= 72 ++ const jsi::ArrayBuffer &arrayBuffer ++#else ++ jsi::ArrayBuffer arrayBuffer ++#endif ++ ) ++ : Shareable(ArrayBufferType), ++ data_( ++ arrayBuffer.data(rt), ++ arrayBuffer.data(rt) + arrayBuffer.size(rt)) { ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::vector data_; ++}; ++ ++class ShareableWorklet : public ShareableObject { ++ public: ++ ShareableWorklet(jsi::Runtime &rt, const jsi::Object &worklet) ++ : ShareableObject(rt, worklet) { ++ valueType_ = WorkletType; ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++}; ++ ++class ShareableRemoteFunction ++ : public Shareable, ++ public std::enable_shared_from_this { ++ private: ++ jsi::Runtime *runtime_; ++#ifndef NDEBUG ++ const std::string name_; ++#endif ++ std::unique_ptr function_; ++ ++ public: ++ ShareableRemoteFunction(jsi::Runtime &rt, jsi::Function &&function) ++ : Shareable(RemoteFunctionType), ++ runtime_(&rt), ++#ifndef NDEBUG ++ name_(function.getProperty(rt, "name").asString(rt).utf8(rt)), ++#endif ++ function_(std::make_unique(rt, std::move(function))) { ++ } ++ ++ ~ShareableRemoteFunction() { ++ cleanupIfRuntimeExists(runtime_, function_); ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++}; ++ ++class ShareableHandle : public Shareable { ++ private: ++ // We don't release the initializer since the handle can get ++ // initialized in parallel on multiple threads. However this is not a problem, ++ // since the final value is taken from a cache on the runtime which guarantees ++ // sequential access. ++ std::unique_ptr initializer_; ++ std::unique_ptr remoteValue_; ++ mutable std::mutex initializationMutex_; ++ jsi::Runtime *remoteRuntime_; ++ ++ public: ++ ShareableHandle(jsi::Runtime &rt, const jsi::Object &initializerObject) ++ : Shareable(HandleType), ++ initializer_(std::make_unique(rt, initializerObject)) { ++ } ++ ++ ~ShareableHandle() { ++ cleanupIfRuntimeExists(remoteRuntime_, remoteValue_); ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++}; ++ ++class ShareableString : public Shareable { ++ public: ++ explicit ShareableString(const std::string &string) ++ : Shareable(StringType), data_(string) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::string data_; ++}; ++ ++class ShareableBigInt : public Shareable { ++ public: ++ explicit ShareableBigInt(jsi::Runtime &rt, const jsi::BigInt &bigint) ++ : Shareable(BigIntType), string_(bigint.toString(rt).utf8(rt)) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::string string_; ++}; ++ ++class ShareableScalar : public Shareable { ++ public: ++ explicit ShareableScalar(double number) : Shareable(NumberType) { ++ data_.number = number; ++ } ++ explicit ShareableScalar(bool boolean) : Shareable(BooleanType) { ++ data_.boolean = boolean; ++ } ++ ShareableScalar() : Shareable(UndefinedType) {} ++ explicit ShareableScalar(std::nullptr_t) : Shareable(NullType) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &); ++ ++ protected: ++ union Data { ++ bool boolean; ++ double number; ++ }; ++ ++ private: ++ Data data_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/AsyncQueue.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/AsyncQueue.h +new file mode 100644 +index 0000000..af565fc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/AsyncQueue.h +@@ -0,0 +1,35 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace worklets { ++ ++struct AsyncQueueState { ++ std::atomic_bool running{true}; ++ std::mutex mutex; ++ std::condition_variable cv; ++ std::queue> queue; ++}; ++ ++class AsyncQueue { ++ public: ++ explicit AsyncQueue(std::string name); ++ ++ ~AsyncQueue(); ++ ++ void push(std::function &&job); ++ ++ private: ++ const std::shared_ptr state_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSISerializer.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSISerializer.h +new file mode 100644 +index 0000000..55b509c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSISerializer.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class JSISerializer { ++ public: ++ explicit JSISerializer(jsi::Runtime &rt); ++ std::string stringifyJSIValueRecursively( ++ const jsi::Value &value, ++ bool isTopLevel = false); ++ ++ private: ++ std::string stringifyArray(const jsi::Array &arr); ++ std::string stringifyFunction(const jsi::Function &func); ++ std::string stringifyHostObject(jsi::HostObject &hostObject); ++ std::string stringifyObject(const jsi::Object &object); ++ std::string stringifyError(const jsi::Object &object); ++ std::string stringifySet(const jsi::Object &object); ++ std::string stringifyMap(const jsi::Object &object); ++ std::string stringifyWithName(const jsi::Object &object); ++ std::string stringifyWithToString(const jsi::Object &object); ++ std::string stringifyRecursiveType(const jsi::Object &object); ++ ++ bool hasBeenVisited(const jsi::Object &object) { ++ return visitedNodes_.getPropertyAsFunction(rt_, "has") ++ .callWithThis(rt_, visitedNodes_, object) ++ .getBool(); ++ } ++ ++ void markAsVisited(const jsi::Object &object) { ++ visitedNodes_.getPropertyAsFunction(rt_, "add") ++ .callWithThis(rt_, visitedNodes_, object); ++ } ++ ++ jsi::Runtime &rt_; ++ jsi::Object visitedNodes_; ++}; ++ ++std::string stringifyJSIValue(jsi::Runtime &rt, const jsi::Value &value); ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSLogger.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSLogger.h +new file mode 100644 +index 0000000..ce63310 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSLogger.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace worklets { ++ ++class JSLogger { ++ public: ++ explicit JSLogger(const std::shared_ptr &jsScheduler) ++ : jsScheduler_(jsScheduler) {} ++ void warnOnJS(const std::string &warning) const; ++ ++ private: ++ const std::shared_ptr jsScheduler_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSScheduler.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSScheduler.h +new file mode 100644 +index 0000000..217dbfd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/JSScheduler.h +@@ -0,0 +1,41 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace worklets { ++ ++class JSScheduler { ++ using Job = std::function; ++ ++ public: ++ // With `jsCallInvoker`. ++ explicit JSScheduler( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsCallInvoker); ++ ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ // With `runtimeExecutor`. ++ explicit JSScheduler( ++ jsi::Runtime &rnRuntime, ++ RuntimeExecutor runtimeExecutor); ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ ++ const std::function scheduleOnJS = nullptr; ++ const std::shared_ptr getJSCallInvoker() const; ++ ++ protected: ++ jsi::Runtime &rnRuntime_; ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ RuntimeExecutor runtimeExecutor_ = nullptr; ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ const std::shared_ptr jsCallInvoker_ = nullptr; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ReanimatedJSIUtils.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ReanimatedJSIUtils.h +new file mode 100644 +index 0000000..857031d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ReanimatedJSIUtils.h +@@ -0,0 +1,174 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets::jsi_utils { ++ ++// `get` functions take a pointer to `jsi::Value` and ++// call an appropriate method to cast to the native type ++template ++inline T get(jsi::Runtime &rt, const jsi::Value *value); ++ ++template <> ++inline double get(jsi::Runtime &, const jsi::Value *value) { ++ return value->asNumber(); ++} ++ ++template <> ++inline int get(jsi::Runtime &, const jsi::Value *value) { ++ return value->asNumber(); ++} ++ ++template <> ++inline bool get(jsi::Runtime &, const jsi::Value *value) { ++ if (!value->isBool()) { ++ throw jsi::JSINativeException("[Reanimated] Expected a boolean."); ++ } ++ return value->getBool(); ++} ++ ++template <> ++inline jsi::Object get(jsi::Runtime &rt, const jsi::Value *value) { ++ return value->asObject(rt); ++} ++ ++template <> ++inline jsi::Value const &get( ++ jsi::Runtime &, ++ const jsi::Value *value) { ++ return *value; ++} ++ ++// `convertArgs` functions take a variadic template parameter of target (C++) ++// argument types `Targs` and a `jsi::Value` array `args`, and converts `args` ++// to a tuple of typed C++ arguments to be passed to the native implementation. ++// This is accomplished by dispatching (at compile time) to the correct ++// implementation based on the first type of `Targs`, using SFINAE to select the ++// correct specialization, and concatenating with the result of recursion on the ++// rest of `Targs` ++ ++// BEGIN implementations for `convertArgs` specializations. ++// specialization for empty `Targs` - returns an empty tuple ++template ++inline std::enable_if_t<(sizeof...(Args) == 0), std::tuple<>> convertArgs( ++ jsi::Runtime &, ++ const jsi::Value *) { ++ return std::make_tuple(); ++} ++ ++// calls `get` on the first argument to retrieve the native type, ++// then calls recursively on the rest of `args` ++// and returns the concatenation of results ++template ++inline std::tuple convertArgs( ++ jsi::Runtime &rt, ++ const jsi::Value *args) { ++ auto arg = std::tuple(get(rt, args)); ++ auto rest = convertArgs(rt, std::next(args)); ++ return std::tuple_cat(std::move(arg), std::move(rest)); ++} ++// END implementations for `convertArgs` specializations. ++ ++// returns a tuple with the result of casting `args` to appropriate ++// native C++ types needed to call `function` ++template ++std::tuple getArgsForFunction( ++ std::function, ++ jsi::Runtime &rt, ++ const jsi::Value *args, ++ const size_t count) { ++ assert(sizeof...(Args) == count); ++ return convertArgs(rt, args); ++} ++ ++// returns a tuple with the result of casting `args` to appropriate ++// native C++ types needed to call `function`, ++// passing `rt` as the first argument ++template ++std::tuple getArgsForFunction( ++ std::function, ++ jsi::Runtime &rt, ++ const jsi::Value *args, ++ const size_t count) { ++ assert(sizeof...(Args) == count); ++ return std::tuple_cat(std::tie(rt), convertArgs(rt, args)); ++} ++ ++// calls `function` with `args` ++template ++inline jsi::Value apply( ++ std::function function, ++ std::tuple args) { ++ return std::apply(function, std::move(args)); ++} ++ ++// calls void-returning `function` with `args`, ++// and returns `undefined` ++template ++inline jsi::Value apply( ++ std::function function, ++ std::tuple args) { ++ std::apply(function, std::move(args)); ++ return jsi::Value::undefined(); ++} ++ ++// returns a function with JSI calling convention ++// from a native function `function` ++template ++jsi::HostFunctionType createHostFunction(Fun function) { ++ return [function]( ++ jsi::Runtime &rt, ++ const jsi::Value &, ++ const jsi::Value *args, ++ const size_t count) { ++ auto argz = getArgsForFunction(function, rt, args, count); ++ return apply(function, std::move(argz)); ++ }; ++} ++ ++// used to determine if `function` ++// takes `Runtime &` as its first argument ++template ++struct takes_runtime { ++ static constexpr size_t value = 0; ++}; ++ ++// specialization for `function ++struct takes_runtime { ++ static constexpr size_t value = 1; ++}; ++ ++// creates a JSI compatible function from `function` ++// and installs it as a global function named `name` ++// in the `rt` JS runtime ++template ++void installJsiFunction( ++ jsi::Runtime &rt, ++ std::string_view name, ++ std::function function) { ++ auto clb = createHostFunction(function); ++ auto argsCount = sizeof...(Args) - takes_runtime::value; ++ jsi::Value jsiFunction = jsi::Function::createFromHostFunction( ++ rt, jsi::PropNameID::forAscii(rt, name.data()), argsCount, clb); ++ rt.global().setProperty(rt, name.data(), jsiFunction); ++} ++ ++// this should take care of passing types convertible to `function` ++template ++void installJsiFunction(jsi::Runtime &rt, std::string_view name, Fun function) { ++ installJsiFunction(rt, name, std::function(std::forward(function))); ++} ++ ++jsi::Array convertStringToArray( ++ jsi::Runtime &rt, ++ const std::string &value, ++ const unsigned int expectedSize); ++ ++} // namespace worklets::jsi_utils +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ReanimatedVersion.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ReanimatedVersion.h +new file mode 100644 +index 0000000..80dfa75 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ReanimatedVersion.h +@@ -0,0 +1,19 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++std::string getReanimatedCppVersion(); ++void injectReanimatedCppVersion(jsi::Runtime &); ++bool matchVersion(const std::string &, const std::string &); ++void checkJSVersion(jsi::Runtime &, const std::shared_ptr &); ++ ++}; // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ThreadSafeQueue.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ThreadSafeQueue.h +new file mode 100644 +index 0000000..de53d84 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/ThreadSafeQueue.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++namespace worklets { ++ ++// ++// Copyright (c) 2013 Juan Palacios juan.palacios.puyana@gmail.com ++// Subject to the BSD 2-Clause License ++// - see < https://opensource.org/license/bsd-2-clause/ > ++// ++template ++class ThreadSafeQueue { ++ public: ++ T pop() { ++ std::unique_lock mlock(mutex_); ++ while (queue_.empty()) { ++ cond_.wait(mlock); ++ } ++ const auto item = queue_.front(); ++ queue_.pop(); ++ return item; ++ } ++ ++ void push(T &&item) { ++ std::unique_lock mlock(mutex_); ++ queue_.push(std::move(item)); ++ mlock.unlock(); ++ cond_.notify_one(); ++ } ++ ++ bool empty() const { ++ std::unique_lock mlock(mutex_); ++ const auto res = queue_.empty(); ++ mlock.unlock(); ++ cond_.notify_one(); ++ return res; ++ } ++ ++ private: ++ std::queue queue_; ++ mutable std::mutex mutex_; ++ mutable std::condition_variable cond_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/UIScheduler.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/UIScheduler.h +new file mode 100644 +index 0000000..8b9aca9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/UIScheduler.h +@@ -0,0 +1,22 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace worklets { ++ ++class UIScheduler { ++ public: ++ virtual void scheduleOnUI(std::function job); ++ virtual void triggerUI(); ++ virtual ~UIScheduler() = default; ++ ++ protected: ++ std::atomic scheduledOnUI_{false}; ++ ThreadSafeQueue> uiJobs_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/WorkletEventHandler.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/WorkletEventHandler.h +new file mode 100644 +index 0000000..4eac297 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/Tools/WorkletEventHandler.h +@@ -0,0 +1,41 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletEventHandler { ++ const uint64_t handlerId_; ++ const uint64_t emitterReactTag_; ++ const std::string eventName_; ++ const std::shared_ptr handlerFunction_; ++ ++ public: ++ WorkletEventHandler( ++ const uint64_t handlerId, ++ const std::string &eventName, ++ const uint64_t emitterReactTag, ++ const std::shared_ptr &handlerFunction) ++ : handlerId_(handlerId), ++ emitterReactTag_(emitterReactTag), ++ eventName_(eventName), ++ handlerFunction_(handlerFunction) {} ++ void process( ++ const std::shared_ptr &workletRuntime, ++ double eventTimestamp, ++ const jsi::Value &eventValue) const; ++ uint64_t getHandlerId() const; ++ const std::string &getEventName() const; ++ uint64_t getEmitterReactTag() const; ++ bool shouldIgnoreEmitterReactTag() const; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/ReanimatedHermesRuntime.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/ReanimatedHermesRuntime.h +new file mode 100644 +index 0000000..8d3e9f4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/ReanimatedHermesRuntime.h +@@ -0,0 +1,147 @@ ++#pragma once ++ ++// JS_RUNTIME_HERMES is only set on Android so we have to check __has_include ++// on iOS. ++#if __APPLE__ && \ ++ (__has_include( \ ++ ) || __has_include()) ++#define JS_RUNTIME_HERMES 1 ++#endif ++ ++// Only include this file in Hermes-enabled builds as some platforms (like tvOS) ++// don't support hermes and it causes the compilation to fail. ++#if JS_RUNTIME_HERMES ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++#if __has_include() ++#include ++#else // __has_include() || ANDROID ++#include ++#endif ++ ++#if HERMES_ENABLE_DEBUGGER ++#if REACT_NATIVE_MINOR_VERSION >= 73 ++#include ++#else ++#include ++#include ++#endif ++#endif // HERMES_ENABLE_DEBUGGER ++ ++namespace worklets { ++ ++using namespace facebook; ++using namespace react; ++#if HERMES_ENABLE_DEBUGGER ++#if REACT_NATIVE_MINOR_VERSION >= 73 ++using namespace facebook::hermes::inspector_modern; ++#else ++using namespace facebook::hermes::inspector; ++#endif ++#endif // HERMES_ENABLE_DEBUGGER ++ ++// ReentrancyCheck is copied from React Native ++// from ReactCommon/hermes/executor/HermesExecutorFactory.cpp ++// https://github.com/facebook/react-native/blob/main/packages/react-native/ReactCommon/hermes/executor/HermesExecutorFactory.cpp ++struct ReanimatedReentrancyCheck { ++ // This is effectively a very subtle and complex assert, so only ++ // include it in builds which would include asserts. ++#ifndef NDEBUG ++ ReanimatedReentrancyCheck() : tid(std::thread::id()), depth(0) {} ++ ++ void before() { ++ std::thread::id this_id = std::this_thread::get_id(); ++ std::thread::id expected = std::thread::id(); ++ ++ // A note on memory ordering: the main purpose of these checks is ++ // to observe a before/before race, without an intervening after. ++ // This will be detected by the compare_exchange_strong atomicity ++ // properties, regardless of memory order. ++ // ++ // For everything else, it is easiest to think of 'depth' as a ++ // proxy for any access made inside the VM. If access to depth ++ // are reordered incorrectly, the same could be true of any other ++ // operation made by the VM. In fact, using acquire/release ++ // memory ordering could create barriers which mask a programmer ++ // error. So, we use relaxed memory order, to avoid masking ++ // actual ordering errors. Although, in practice, ordering errors ++ // of this sort would be surprising, because the decorator would ++ // need to call after() without before(). ++ ++ if (tid.compare_exchange_strong( ++ expected, this_id, std::memory_order_relaxed)) { ++ // Returns true if tid and expected were the same. If they ++ // were, then the stored tid referred to no thread, and we ++ // atomically saved this thread's tid. Now increment depth. ++ assert(depth == 0 && "[Reanimated] No thread id, but depth != 0"); ++ ++depth; ++ } else if (expected == this_id) { ++ // If the stored tid referred to a thread, expected was set to ++ // that value. If that value is this thread's tid, that's ok, ++ // just increment depth again. ++ assert(depth != 0 && "[Reanimated] Thread id was set, but depth == 0"); ++ ++depth; ++ } else { ++ // The stored tid was some other thread. This indicates a bad ++ // programmer error, where VM methods were called on two ++ // different threads unsafely. Fail fast (and hard) so the ++ // crash can be analyzed. ++ __builtin_trap(); ++ } ++ } ++ ++ void after() { ++ assert( ++ tid.load(std::memory_order_relaxed) == std::this_thread::get_id() && ++ "[Reanimated] No thread id in after()"); ++ if (--depth == 0) { ++ // If we decremented depth to zero, store no-thread into tid. ++ std::thread::id expected = std::this_thread::get_id(); ++ bool didWrite = tid.compare_exchange_strong( ++ expected, std::thread::id(), std::memory_order_relaxed); ++ assert(didWrite && "[Reanimated] Decremented to zero, but no tid write"); ++ } ++ } ++ ++ std::atomic tid; ++ // This is not atomic, as it is only written or read from the owning ++ // thread. ++ unsigned int depth; ++#endif // NDEBUG ++}; ++ ++// This is in fact a subclass of jsi::Runtime! WithRuntimeDecorator is a ++// template class that is a subclass of DecoratedRuntime which is also a ++// template class that then inherits its template, which in this case is ++// jsi::Runtime. So the inheritance is: ReanimatedHermesRuntime -> ++// WithRuntimeDecorator -> DecoratedRuntime -> jsi::Runtime You can find out ++// more about this in ReactCommon/jsi/jsi/Decorator.h or by following this link: ++// https://github.com/facebook/react-native/blob/main/packages/react-native/ReactCommon/jsi/jsi/decorator.h ++class ReanimatedHermesRuntime ++ : public jsi::WithRuntimeDecorator { ++ public: ++ ReanimatedHermesRuntime( ++ std::unique_ptr runtime, ++ const std::shared_ptr &jsQueue, ++ const std::string &name); ++ ~ReanimatedHermesRuntime(); ++ ++ private: ++ std::unique_ptr runtime_; ++ ReanimatedReentrancyCheck reentrancyCheck_; ++#if HERMES_ENABLE_DEBUGGER ++ chrome::DebugSessionToken debugToken_; ++#endif // HERMES_ENABLE_DEBUGGER ++}; ++ ++} // namespace worklets ++ ++#endif // JS_RUNTIME_HERMES +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/ReanimatedRuntime.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/ReanimatedRuntime.h +new file mode 100644 +index 0000000..77a8b51 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/ReanimatedRuntime.h +@@ -0,0 +1,30 @@ ++#pragma once ++ ++// JS_RUNTIME_HERMES is only set on Android so we have to check __has_include ++// on iOS. ++#if __APPLE__ && \ ++ (__has_include( \ ++ ) || __has_include()) ++#define JS_RUNTIME_HERMES 1 ++#endif ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace worklets { ++ ++using namespace facebook; ++using namespace react; ++ ++class ReanimatedRuntime { ++ public: ++ static std::shared_ptr make( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsQueue, ++ const std::string &name); ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntime.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntime.h +new file mode 100644 +index 0000000..f904d05 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntime.h +@@ -0,0 +1,84 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace worklets { ++ ++class WorkletRuntime : public jsi::HostObject, ++ public std::enable_shared_from_this { ++ public: ++ explicit WorkletRuntime( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsQueue, ++ const std::shared_ptr &jsScheduler, ++ const std::string &name, ++ const bool supportsLocking, ++ const std::string &valueUnpackerCode); ++ ++ jsi::Runtime &getJSIRuntime() const { ++ return *runtime_; ++ } ++ ++ template ++ inline jsi::Value runGuarded( ++ const std::shared_ptr &shareableWorklet, ++ Args &&...args) const { ++ jsi::Runtime &rt = *runtime_; ++ return runOnRuntimeGuarded( ++ rt, shareableWorklet->toJSValue(rt), std::forward(args)...); ++ } ++ ++ void runAsyncGuarded( ++ const std::shared_ptr &shareableWorklet) { ++ if (queue_ == nullptr) { ++ queue_ = std::make_shared(name_); ++ } ++ queue_->push( ++ [=, self = shared_from_this()] { self->runGuarded(shareableWorklet); }); ++ } ++ ++ jsi::Value executeSync(jsi::Runtime &rt, const jsi::Value &worklet) const; ++ ++ std::string toString() const { ++ return "[WorkletRuntime \"" + name_ + "\"]"; ++ } ++ ++ jsi::Value get(jsi::Runtime &rt, const jsi::PropNameID &propName) override; ++ ++ std::vector getPropertyNames(jsi::Runtime &rt) override; ++ ++ private: ++ const std::shared_ptr runtimeMutex_; ++ const std::shared_ptr runtime_; ++#ifndef NDEBUG ++ const bool supportsLocking_; ++#endif ++ const std::string name_; ++ std::shared_ptr queue_; ++}; ++ ++// This function needs to be non-inline to avoid problems with dynamic_cast on ++// Android ++std::shared_ptr extractWorkletRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &value); ++ ++void scheduleOnRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &workletRuntimeValue, ++ const jsi::Value &shareableWorkletValue); ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntimeCollector.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntimeCollector.h +new file mode 100644 +index 0000000..09c7091 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntimeCollector.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace worklets { ++ ++class WorkletRuntimeCollector : public jsi::HostObject { ++ // When worklet runtime is created, we inject an instance of this class as a ++ // `jsi::HostObject` into the global object. When worklet runtime is ++ // terminated, the object is garbage-collected, which runs the C++ destructor. ++ // In the destructor, we unregister the worklet runtime from the registry. ++ ++ public: ++ explicit WorkletRuntimeCollector(jsi::Runtime &runtime) : runtime_(runtime) { ++ WorkletRuntimeRegistry::registerRuntime(runtime_); ++ } ++ ++ ~WorkletRuntimeCollector() { ++ WorkletRuntimeRegistry::unregisterRuntime(runtime_); ++ } ++ ++ static void install(jsi::Runtime &rt) { ++ auto collector = std::make_shared(rt); ++ auto object = jsi::Object::createFromHostObject(rt, collector); ++ rt.global().setProperty(rt, "__workletRuntimeCollector", object); ++ } ++ ++ private: ++ jsi::Runtime &runtime_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntimeDecorator.h +new file mode 100644 +index 0000000..c3b22d8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/include/worklets/WorkletRuntime/WorkletRuntimeDecorator.h +@@ -0,0 +1,22 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &rt, ++ const std::string &name, ++ const std::shared_ptr &jsScheduler); ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.arm64-v8a/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.arm64-v8a/libworklets.so +new file mode 100755 +index 0000000..f771b3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.x86_64/abi.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.x86_64/abi.json +new file mode 100644 +index 0000000..c4d68de +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.x86_64/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86_64", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.x86_64/libworklets.so +new file mode 100755 +index 0000000..a8ac8f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/libs/android.x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/module.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/modules/worklets/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json +new file mode 100644 +index 0000000..449d405 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab/prefab.json +@@ -0,0 +1,5 @@ ++{ ++ "name": "react-native-reanimated", ++ "schema_version": 2, ++ "dependencies": [] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug +new file mode 100644 +index 0000000..ab50035 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_configuration/prefab_publication.json/debug +@@ -0,0 +1,57 @@ ++{ ++ "installationFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libreanimated.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build.json" ++ }, ++ { ++ "abiName": "x86_64", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libreanimated.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build.json" ++ } ++ ] ++ }, ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [ ++ { ++ "abiName": "arm64-v8a", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/arm64-v8a/libworklets.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/arm64-v8a/android_gradle_build.json" ++ }, ++ { ++ "abiName": "x86_64", ++ "abiApi": 24, ++ "abiNdkMajor": 27, ++ "abiStl": "c++_shared", ++ "abiLibrary": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/cxx/Debug/d3t4xl4a/obj/x86_64/libworklets.so", ++ "abiAndroidGradleBuildJsonFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/.cxx/Debug/d3t4xl4a/x86_64/android_gradle_build.json" ++ } ++ ] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug +new file mode 100644 +index 0000000..76ab05c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug +@@ -0,0 +1,23 @@ ++{ ++ "installationFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [] ++ }, ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release +new file mode 100644 +index 0000000..1d5fcaf +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release +@@ -0,0 +1,23 @@ ++{ ++ "installationFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/intermediates/prefab_package/release/prefab", ++ "gradlePath": ":react-native-reanimated", ++ "packageInfo": { ++ "packageName": "react-native-reanimated", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "reanimated", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated", ++ "moduleExportLibraries": [], ++ "abis": [] ++ }, ++ { ++ "moduleName": "worklets", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/build/prefab-headers/worklets", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/ReanimatedUIImplementation.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/ReanimatedUIImplementation.class +new file mode 100644 +index 0000000..5ccf53a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/ReanimatedUIImplementation.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/ReanimatedUIManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/ReanimatedUIManager.class +new file mode 100644 +index 0000000..c863245 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/ReanimatedUIManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/UIManagerReanimatedHelper.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/UIManagerReanimatedHelper.class +new file mode 100644 +index 0000000..78c82c3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/uimanager/UIManagerReanimatedHelper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/common/GestureHandlerStateManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/common/GestureHandlerStateManager.class +new file mode 100644 +index 0000000..25bb987 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/common/GestureHandlerStateManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/AndroidUIScheduler$1.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/AndroidUIScheduler$1.class +new file mode 100644 +index 0000000..7c4de85 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/AndroidUIScheduler$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/AndroidUIScheduler.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/AndroidUIScheduler.class +new file mode 100644 +index 0000000..968077c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/AndroidUIScheduler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/BorderRadiiDrawableUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/BorderRadiiDrawableUtils.class +new file mode 100644 +index 0000000..6c7bcfe +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/BorderRadiiDrawableUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/BuildConfig.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/BuildConfig.class +new file mode 100644 +index 0000000..46882ab +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/BuildConfig.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/CopiedEvent$1.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/CopiedEvent$1.class +new file mode 100644 +index 0000000..318a4b8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/CopiedEvent$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/CopiedEvent.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/CopiedEvent.class +new file mode 100644 +index 0000000..f74e033 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/CopiedEvent.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/DevMenuUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/DevMenuUtils.class +new file mode 100644 +index 0000000..0b72740 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/DevMenuUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/MapUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/MapUtils.class +new file mode 100644 +index 0000000..dfe568b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/MapUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeMethodsHelper.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeMethodsHelper.class +new file mode 100644 +index 0000000..9f808b6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeMethodsHelper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeProxy$1.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeProxy$1.class +new file mode 100644 +index 0000000..aa7af54 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeProxy$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeProxy.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeProxy.class +new file mode 100644 +index 0000000..3b97dca +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeProxy.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeReanimatedModuleSpec.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeReanimatedModuleSpec.class +new file mode 100644 +index 0000000..b6b4772 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NativeReanimatedModuleSpec.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$1.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$1.class +new file mode 100644 +index 0000000..cb5b750 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$1.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$2.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$2.class +new file mode 100644 +index 0000000..596f531 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$2.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$3.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$3.class +new file mode 100644 +index 0000000..0154ffa +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$3.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$4.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$4.class +new file mode 100644 +index 0000000..b0e9d9e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$4.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.class +new file mode 100644 +index 0000000..2fbdb44 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$NativeUpdateOperation.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class +new file mode 100644 +index 0000000..872bf6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager$OnAnimationFrame.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager.class +new file mode 100644 +index 0000000..644b0b1 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/NodesManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReaCompatibility.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReaCompatibility.class +new file mode 100644 +index 0000000..943bf86 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReaCompatibility.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.class +new file mode 100644 +index 0000000..fef5723 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReactNativeUtils$BorderRadii.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReactNativeUtils.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReactNativeUtils.class +new file mode 100644 +index 0000000..4eb6bcc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReactNativeUtils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedMessageQueueThread.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedMessageQueueThread.class +new file mode 100644 +index 0000000..6ae7766 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedMessageQueueThread.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.class +new file mode 100644 +index 0000000..63166b4 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedMessageQueueThreadBase.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.class +new file mode 100644 +index 0000000..9052b83 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedModule$UIThreadOperation.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedModule.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedModule.class +new file mode 100644 +index 0000000..fd791e5 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedModule.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedPackage.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedPackage.class +new file mode 100644 +index 0000000..a1bd61c +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedPackage.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedUIManagerFactory.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedUIManagerFactory.class +new file mode 100644 +index 0000000..a13ea39 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/ReanimatedUIManagerFactory.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/Utils.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/Utils.class +new file mode 100644 +index 0000000..8653348 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/Utils.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/Keyboard.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/Keyboard.class +new file mode 100644 +index 0000000..bb4604d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/Keyboard.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class +new file mode 100644 +index 0000000..8fdb012 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardAnimationCallback.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class +new file mode 100644 +index 0000000..bae195e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardAnimationManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardState.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardState.class +new file mode 100644 +index 0000000..4819270 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardState.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class +new file mode 100644 +index 0000000..367c1a6 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/KeyboardWorkletWrapper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class +new file mode 100644 +index 0000000..67b0338 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/NotifyAboutKeyboardChangeFunction.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class +new file mode 100644 +index 0000000..72ef476 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/keyboard/WindowsInsetsManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/AnimationsManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/AnimationsManager.class +new file mode 100644 +index 0000000..bde7acc +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/AnimationsManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.class +new file mode 100644 +index 0000000..2f9e8c0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/LayoutAnimations$Types.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.class +new file mode 100644 +index 0000000..51ea969 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/LayoutAnimations.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.class +new file mode 100644 +index 0000000..b0cdc1b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/NativeMethodsHolder.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.class +new file mode 100644 +index 0000000..eb6cdd9 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReaLayoutAnimator.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.class +new file mode 100644 +index 0000000..ccc9424 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.class +new file mode 100644 +index 0000000..ed2a0df +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ReanimatedNativeHierarchyManagerBase.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ScreensHelper.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ScreensHelper.class +new file mode 100644 +index 0000000..7740161 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ScreensHelper.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedElement.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedElement.class +new file mode 100644 +index 0000000..5225268 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedElement.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.class +new file mode 100644 +index 0000000..1be8175 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$PrepareConfigCleanupTreeVisitor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.class +new file mode 100644 +index 0000000..7becace +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$SnapshotTreeVisitor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.class +new file mode 100644 +index 0000000..0afa6b2 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TopWillAppearListener.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.class +new file mode 100644 +index 0000000..b030d52 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager$TreeVisitor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.class +new file mode 100644 +index 0000000..82dc4b0 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/SharedTransitionManager.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/Snapshot.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/Snapshot.class +new file mode 100644 +index 0000000..e267e66 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/Snapshot.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.class +new file mode 100644 +index 0000000..e121fdd +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$FragmentLifecycleCallbacks.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.class +new file mode 100644 +index 0000000..7ef069b +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver$OnAttachStateChangeListener.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.class +new file mode 100644 +index 0000000..4ee5412 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/TabNavigatorObserver.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.class +new file mode 100644 +index 0000000..0417cc3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/layoutReanimation/ViewHierarchyObserver.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class +new file mode 100644 +index 0000000..d45cd1a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/AnimationFrameCallback.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/EventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/EventHandler.class +new file mode 100644 +index 0000000..cff463f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/EventHandler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.class +new file mode 100644 +index 0000000..5cf20d8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/NativeProxyCommon.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class +new file mode 100644 +index 0000000..dd47f6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/NoopEventHandler.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/SensorSetter.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/SensorSetter.class +new file mode 100644 +index 0000000..7aefac3 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/nativeProxy/SensorSetter.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensor.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensor.class +new file mode 100644 +index 0000000..34ae9ab +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensor.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class +new file mode 100644 +index 0000000..987353f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorContainer.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class +new file mode 100644 +index 0000000..3fdb42f +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorListener.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorType.class b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorType.class +new file mode 100644 +index 0000000..5faa711 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/reanimated/sensor/ReanimatedSensorType.class differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..ef30e65 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libreanimated.so +new file mode 100644 +index 0000000..58eee6a +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libworklets.so +new file mode 100644 +index 0000000..f771b3e +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libreanimated.so b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libreanimated.so +new file mode 100644 +index 0000000..6a5be3d +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libreanimated.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libworklets.so b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libworklets.so +new file mode 100644 +index 0000000..a8ac8f8 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libworklets.so differ +diff --git a/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..212ed29 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1 @@ ++com.swmansion.reanimated +diff --git a/node_modules/react-native-reanimated/android/build/outputs/aar/react-native-reanimated-debug.aar b/node_modules/react-native-reanimated/android/build/outputs/aar/react-native-reanimated-debug.aar +new file mode 100644 +index 0000000..2cc0a80 +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/outputs/aar/react-native-reanimated-debug.aar differ +diff --git a/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..32c1932 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,16 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:1-71 ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:1-71 ++ package ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml:2:11-69 ++uses-sdk ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-reanimated/android/src/main/AndroidManifest.xml +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h +new file mode 100644 +index 0000000..4a79578 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/AnimatedSensor/AnimatedSensorModule.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++enum SensorType { ++ ACCELEROMETER = 1, ++ GYROSCOPE = 2, ++ GRAVITY = 3, ++ MAGNETIC_FIELD = 4, ++ ROTATION_VECTOR = 5, ++}; ++ ++class AnimatedSensorModule { ++ std::unordered_set sensorsIds_; ++ RegisterSensorFunction platformRegisterSensorFunction_; ++ UnregisterSensorFunction platformUnregisterSensorFunction_; ++ ++ public: ++ AnimatedSensorModule( ++ const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ~AnimatedSensorModule(); ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const std::shared_ptr &uiWorkletRuntime, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer); ++ void unregisterSensor(const jsi::Value &sensorId); ++ void unregisterAllSensors(); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/PropsRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/PropsRegistry.h +new file mode 100644 +index 0000000..2722a6f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/PropsRegistry.h +@@ -0,0 +1,59 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++class PropsRegistry { ++ public: ++ std::lock_guard createLock() const; ++ // returns a lock you need to hold when calling any of the methods below ++ ++ void update(const ShadowNode::Shared &shadowNode, folly::dynamic &&props); ++ ++ void for_each(std::function callback) const; ++ ++ void remove(const Tag tag); ++ ++ void pauseReanimatedCommits() { ++ isPaused_ = true; ++ } ++ ++ bool shouldReanimatedSkipCommit() { ++ return isPaused_; ++ } ++ ++ void unpauseReanimatedCommits() { ++ isPaused_ = false; ++ } ++ ++ void pleaseCommitAfterPause() { ++ shouldCommitAfterPause_ = true; ++ } ++ ++ bool shouldCommitAfterPause() { ++ return shouldCommitAfterPause_.exchange(false); ++ } ++ ++ private: ++ std::unordered_map> map_; ++ ++ mutable std::mutex mutex_; // Protects `map_`. ++ ++ std::atomic isPaused_; ++ std::atomic shouldCommitAfterPause_; ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h +new file mode 100644 +index 0000000..d9e7901 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitHook.h +@@ -0,0 +1,61 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++class ReanimatedCommitHook : public UIManagerCommitHook { ++ public: ++ ReanimatedCommitHook( ++ const std::shared_ptr &propsRegistry, ++ const std::shared_ptr &uiManager, ++ const std::shared_ptr &layoutAnimationsProxy); ++ ++ ~ReanimatedCommitHook() noexcept override; ++ ++#if REACT_NATIVE_MINOR_VERSION >= 73 ++ void commitHookWasRegistered(UIManager const &) noexcept override {} ++ ++ void commitHookWasUnregistered(UIManager const &) noexcept override {} ++ ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ ShadowTree const &shadowTree, ++ RootShadowNode::Shared const &oldRootShadowNode, ++ RootShadowNode::Unshared const &newRootShadowNode) noexcept override; ++#else ++ void commitHookWasRegistered(UIManager const &) const noexcept override {} ++ ++ void commitHookWasUnregistered(UIManager const &) const noexcept override {} ++ ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ ShadowTree const &shadowTree, ++ RootShadowNode::Shared const &oldRootShadowNode, ++ RootShadowNode::Unshared const &newRootShadowNode) ++ const noexcept override; ++#endif ++ ++ void maybeInitializeLayoutAnimations(SurfaceId surfaceId); ++ ++ private: ++ std::shared_ptr propsRegistry_; ++ ++ std::shared_ptr uiManager_; ++ ++ std::shared_ptr layoutAnimationsProxy_; ++ ++ SurfaceId currentMaxSurfaceId_ = -1; ++ ++ std::mutex mutex_; // Protects `currentMaxSurfaceId_`. ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h +new file mode 100644 +index 0000000..34ca4ba +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedCommitShadowNode.h +@@ -0,0 +1,49 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++ ++using namespace facebook::react; ++ ++namespace reanimated { ++ ++// We use this trait to mark that a commit was created by Reanimated. ++// Traits are copied when nodes are cloned, so this information ++// won't be lost unless someone explicitly overrides it. ++// We need this information to skip unnecessary updates in ++// the commit hook. ++// Currently RN traits go up to 10, so hopefully ++// the arbitrarily chosen numbers 27 and 28 will be safe :) ++ ++// We have to use 2 traits, because we want to distinguish reanimated ++// commits both in the commit hook and mount hook. If we only had one trait ++// and didn't remove it in the commit hook, then any node that would clone ++// this node would also have our commit trait, rendering this trait useless. ++constexpr ShadowNodeTraits::Trait ReanimatedCommitTrait{1 << 27}; ++constexpr ShadowNodeTraits::Trait ReanimatedMountTrait{1 << 28}; ++ ++class ReanimatedCommitShadowNode : public ShadowNode { ++ public: ++ inline void setReanimatedCommitTrait() { ++ traits_.set(ReanimatedCommitTrait); ++ } ++ inline void unsetReanimatedCommitTrait() { ++ traits_.unset(ReanimatedCommitTrait); ++ } ++ inline bool hasReanimatedCommitTrait() { ++ return traits_.check(ReanimatedCommitTrait); ++ } ++ inline void setReanimatedMountTrait() { ++ traits_.set(ReanimatedMountTrait); ++ } ++ inline void unsetReanimatedMountTrait() { ++ traits_.unset(ReanimatedMountTrait); ++ } ++ inline bool hasReanimatedMountTrait() { ++ return traits_.check(ReanimatedMountTrait); ++ } ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h +new file mode 100644 +index 0000000..143eb87 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ReanimatedMountHook.h +@@ -0,0 +1,33 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::react; ++ ++class ReanimatedMountHook : public UIManagerMountHook { ++ public: ++ ReanimatedMountHook( ++ const std::shared_ptr &propsRegistry, ++ const std::shared_ptr &uiManager); ++ ~ReanimatedMountHook() noexcept override; ++ ++ void shadowTreeDidMount( ++ RootShadowNode::Shared const &rootShadowNode, ++ double mountTime) noexcept override; ++ ++ private: ++ const std::shared_ptr propsRegistry_; ++ const std::shared_ptr uiManager_; ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h +new file mode 100644 +index 0000000..e3f9f6d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Fabric/ShadowTreeCloner.h +@@ -0,0 +1,29 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++using PropsMap = ++ std::unordered_map>; ++using ChildrenMap = ++ std::unordered_map>; ++ ++RootShadowNode::Unshared cloneShadowTreeWithNewProps( ++ const RootShadowNode &oldRootNode, ++ const PropsMap &propsMap); ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h +new file mode 100644 +index 0000000..229558e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationType.h +@@ -0,0 +1,9 @@ ++#pragma once ++ ++typedef enum LayoutAnimationType { ++ ENTERING = 1, ++ EXITING = 2, ++ LAYOUT = 3, ++ SHARED_ELEMENT_TRANSITION = 4, ++ SHARED_ELEMENT_TRANSITION_PROGRESS = 5, ++} LayoutAnimationType; +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h +new file mode 100644 +index 0000000..033cd98 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsManager.h +@@ -0,0 +1,90 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++struct LayoutAnimationConfig { ++ int tag; ++ LayoutAnimationType type; ++ std::shared_ptr config; ++ std::string sharedTransitionTag; ++}; ++ ++class LayoutAnimationsManager { ++ public: ++ explicit LayoutAnimationsManager(const std::shared_ptr &jsLogger) ++ : jsLogger_(jsLogger) {} ++ void configureAnimationBatch( ++ const std::vector &layoutAnimationsBatch); ++ void setShouldAnimateExiting(const int tag, const bool value); ++ bool shouldAnimateExiting(const int tag, const bool shouldAnimate); ++ bool hasLayoutAnimation(const int tag, const LayoutAnimationType type); ++ void startLayoutAnimation( ++ jsi::Runtime &rt, ++ const int tag, ++ const LayoutAnimationType type, ++ const jsi::Object &values); ++ void clearLayoutAnimationConfig(const int tag); ++ void clearSharedTransitionConfig(const int tag); ++ void cancelLayoutAnimation(jsi::Runtime &rt, const int tag) const; ++#ifdef RCT_NEW_ARCH_ENABLED ++ void transferConfigFromNativeID(const int nativeId, const int tag); ++#endif ++ int findPrecedingViewTagForTransition(const int tag); ++ const std::vector &getSharedGroup(const int viewTag); ++#ifndef NDEBUG ++ std::string getScreenSharedTagPairString( ++ const int screenTag, ++ const std::string &sharedTag) const; ++ void checkDuplicateSharedTag(const int viewTag, const int screenTag); ++#endif ++ ++ private: ++ std::unordered_map> &getConfigsForType( ++ const LayoutAnimationType type); ++ ++ std::shared_ptr jsLogger_; ++#ifndef NDEBUG ++ // This set's function is to detect duplicate sharedTags on a single screen ++ // it contains strings in form: "reactScreenTag:sharedTag" ++ std::unordered_set screenSharedTagSet_; ++ // And this map is to remove collected pairs on SET removal ++ std::unordered_map viewsScreenSharedTagMap_; ++#endif ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ std::unordered_map> ++ enteringAnimationsForNativeID_; ++#endif ++ std::unordered_map> enteringAnimations_; ++ std::unordered_map> exitingAnimations_; ++ std::unordered_map> layoutAnimations_; ++ std::unordered_map> ++ sharedTransitionAnimations_; ++ std::unordered_set ignoreProgressAnimationForTag_; ++ std::unordered_map> sharedTransitionGroups_; ++ std::unordered_map viewTagToSharedTag_; ++ std::unordered_map shouldAnimateExitingForTag_; ++ mutable std::recursive_mutex ++ animationsMutex_; // Protects `enteringAnimations_`, `exitingAnimations_`, ++ // `layoutAnimations_`, `viewSharedValues_` and `shouldAnimateExitingForTag_`. ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +new file mode 100644 +index 0000000..8fd9a89 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsProxy.h +@@ -0,0 +1,140 @@ ++#pragma once ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class NativeReanimatedModule; ++ ++using namespace facebook; ++ ++struct LayoutAnimation { ++ std::shared_ptr finalView, currentView, parentView; ++ std::optional opacity; ++ int count = 1; ++ LayoutAnimation &operator=(const LayoutAnimation &other) = default; ++}; ++ ++struct LayoutAnimationsProxy : public MountingOverrideDelegate { ++ mutable std::unordered_map> nodeForTag_; ++ mutable std::unordered_map layoutAnimations_; ++ mutable std::recursive_mutex mutex; ++ mutable SurfaceManager surfaceManager; ++ mutable std::unordered_set> deadNodes; ++ mutable std::unordered_map leastRemoved; ++ std::shared_ptr layoutAnimationsManager_; ++ ContextContainer::Shared contextContainer_; ++ SharedComponentDescriptorRegistry componentDescriptorRegistry_; ++ jsi::Runtime &uiRuntime_; ++ const std::shared_ptr uiScheduler_; ++ LayoutAnimationsProxy( ++ std::shared_ptr layoutAnimationsManager, ++ SharedComponentDescriptorRegistry componentDescriptorRegistry, ++ ContextContainer::Shared contextContainer, ++ jsi::Runtime &uiRuntime, ++ const std::shared_ptr uiScheduler) ++ : layoutAnimationsManager_(layoutAnimationsManager), ++ contextContainer_(contextContainer), ++ componentDescriptorRegistry_(componentDescriptorRegistry), ++ uiRuntime_(uiRuntime), ++ uiScheduler_(uiScheduler) {} ++ ++ void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) ++ const; ++ void startExitingAnimation(const int tag, ShadowViewMutation &mutation) const; ++ void startLayoutAnimation(const int tag, const ShadowViewMutation &mutation) ++ const; ++ ++ void transferConfigFromNativeID(const std::string nativeId, const int tag) ++ const; ++ std::optional progressLayoutAnimation( ++ int tag, ++ const jsi::Object &newStyle); ++ std::optional endLayoutAnimation(int tag, bool shouldRemove); ++ void maybeCancelAnimation(const int tag) const; ++ ++ void parseRemoveMutations( ++ std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ std::vector> &roots) const; ++ void handleRemovals( ++ ShadowViewMutationList &filteredMutations, ++ std::vector> &roots) const; ++ ++ void handleUpdatesAndEnterings( ++ ShadowViewMutationList &filteredMutations, ++ const std::unordered_map &movedViews, ++ ShadowViewMutationList &mutations, ++ const PropsParserContext &propsParserContext, ++ SurfaceId surfaceId) const; ++ void addOngoingAnimations( ++ SurfaceId surfaceId, ++ ShadowViewMutationList &mutations) const; ++ void updateOngoingAnimationTarget( ++ const int tag, ++ const ShadowViewMutation &mutation) const; ++ std::shared_ptr cloneViewWithoutOpacity( ++ facebook::react::ShadowViewMutation &mutation, ++ const PropsParserContext &propsParserContext) const; ++ void maybeRestoreOpacity( ++ LayoutAnimation &layoutAnimation, ++ const jsi::Object &newStyle) const; ++ void maybeUpdateWindowDimensions( ++ facebook::react::ShadowViewMutation &mutation, ++ SurfaceId surfaceId) const; ++ void createLayoutAnimation( ++ const ShadowViewMutation &mutation, ++ ShadowView &oldView, ++ const SurfaceId &surfaceId, ++ const int tag) const; ++ ++ void updateIndexForMutation(ShadowViewMutation &mutation) const; ++ ++ void removeRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ bool startAnimationsRecursively( ++ std::shared_ptr node, ++ const bool shouldRemoveSubviewsWithoutAnimations, ++ const bool shouldAnimate, ++ const bool isScreenPop, ++ ShadowViewMutationList &mutations) const; ++ void endAnimationsRecursively( ++ std::shared_ptr node, ++ ShadowViewMutationList &mutations) const; ++ void maybeDropAncestors( ++ std::shared_ptr node, ++ std::shared_ptr child, ++ ShadowViewMutationList &cleanupMutations) const; ++ ++ const ComponentDescriptor &getComponentDescriptorForShadowView( ++ const ShadowView &shadowView) const; ++ ++ // MountingOverrideDelegate ++ ++ bool shouldOverridePullTransaction() const override; ++ std::optional pullTransaction( ++ SurfaceId surfaceId, ++ MountingTransaction::Number number, ++ const TransactionTelemetry &telemetry, ++ ShadowViewMutationList mutations) const override; ++}; ++ ++} // namespace reanimated ++ ++#endif // RCT_NEW_ARCH_ENABLED +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +new file mode 100644 +index 0000000..af59fce +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/LayoutAnimations/LayoutAnimationsUtils.h +@@ -0,0 +1,177 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++struct Rect { ++ double width, height; ++}; ++ ++struct Frame { ++ std::optional x, y, width, height; ++ Frame(jsi::Runtime &runtime, const jsi::Object &newStyle) { ++ if (newStyle.hasProperty(runtime, "originX")) { ++ x = newStyle.getProperty(runtime, "originX").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "originY")) { ++ y = newStyle.getProperty(runtime, "originY").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "width")) { ++ width = newStyle.getProperty(runtime, "width").asNumber(); ++ } ++ if (newStyle.hasProperty(runtime, "height")) { ++ height = newStyle.getProperty(runtime, "height").asNumber(); ++ } ++ } ++}; ++ ++struct UpdateValues { ++ Props::Shared newProps; ++ Frame frame; ++}; ++ ++struct Snapshot { ++ double x, y, width, height, windowWidth, windowHeight; ++ Snapshot(const ShadowView &shadowView, Rect window) { ++ const auto &frame = shadowView.layoutMetrics.frame; ++ x = frame.origin.x; ++ y = frame.origin.y; ++ width = frame.size.width; ++ height = frame.size.height; ++ windowWidth = window.width; ++ windowHeight = window.height; ++ } ++}; ++ ++typedef enum ExitingState { ++ UNDEFINED = 1, ++ WAITING = 2, ++ ANIMATING = 4, ++ DEAD = 8, ++ MOVED = 16, ++ DELETED = 32, ++} ExitingState; ++ ++struct MutationNode; ++ ++/** ++ Represents a view that was either removed or had a child removed from the ++ ShadowTree ++ */ ++struct Node { ++ std::vector> children, unflattenedChildren; ++ std::shared_ptr parent, unflattenedParent; ++ Tag tag; ++ void removeChildFromUnflattenedTree(std::shared_ptr child); ++ void applyMutationToIndices(ShadowViewMutation mutation); ++ void insertChildren(std::vector> &newChildren); ++ void insertUnflattenedChildren( ++ std::vector> &newChildren); ++ virtual bool isMutationMode(); ++ explicit Node(const Tag tag) : tag(tag) {} ++ Node(Node &&node) ++ : children(std::move(node.children)), ++ unflattenedChildren(std::move(node.unflattenedChildren)), ++ tag(node.tag) {} ++ Node(Node &node) ++ : children(node.children), ++ unflattenedChildren(node.unflattenedChildren), ++ tag(node.tag) {} ++ virtual ~Node() = default; ++}; ++ ++/** ++ Represents a view that was removed from the ShadowTree ++ */ ++struct MutationNode : public Node { ++ ShadowViewMutation mutation; ++ std::unordered_set animatedChildren; ++ ExitingState state = UNDEFINED; ++ explicit MutationNode(ShadowViewMutation &mutation) ++ : Node(mutation.oldChildShadowView.tag), mutation(mutation) {} ++ MutationNode(ShadowViewMutation &mutation, Node &&node) ++ : Node(std::move(node)), mutation(mutation) {} ++ bool isMutationMode() override; ++}; ++ ++struct SurfaceManager { ++ mutable std::unordered_map< ++ SurfaceId, ++ std::shared_ptr>> ++ props_; ++ mutable std::unordered_map windows_; ++ ++ std::unordered_map &getUpdateMap(SurfaceId surfaceId); ++ void ++ updateWindow(SurfaceId surfaceId, double windowWidth, double windowHeight); ++ Rect getWindow(SurfaceId surfaceId); ++}; ++ ++static inline void updateLayoutMetrics( ++ LayoutMetrics &layoutMetrics, ++ Frame &frame) { ++ // we use optional's here to avoid overwriting non-animated values ++ if (frame.width) { ++ layoutMetrics.frame.size.width = *frame.width; ++ } ++ if (frame.height) { ++ layoutMetrics.frame.size.height = *frame.height; ++ } ++ if (frame.x) { ++ layoutMetrics.frame.origin.x = *frame.x; ++ } ++ if (frame.y) { ++ layoutMetrics.frame.origin.y = *frame.y; ++ } ++} ++ ++static inline bool isRNSScreen(std::shared_ptr node) { ++ return !std::strcmp( ++ node->mutation.oldChildShadowView.componentName, ++ "RNSScreenStack") || ++ !std::strcmp( ++ node->mutation.oldChildShadowView.componentName, "RNSScreen"); ++} ++ ++static inline bool hasLayoutChanged(const ShadowViewMutation &mutation) { ++ return mutation.oldChildShadowView.layoutMetrics.frame != ++ mutation.newChildShadowView.layoutMetrics.frame; ++} ++ ++static inline void mergeAndSwap( ++ std::vector> &A, ++ std::vector> &B) { ++ std::vector> merged; ++ auto it1 = A.begin(), it2 = B.begin(); ++ while (it1 != A.end() && it2 != B.end()) { ++ if ((*it1)->mutation.index < (*it2)->mutation.index) { ++ merged.push_back(*it1); ++ it1++; ++ } else { ++ merged.push_back(*it2); ++ it2++; ++ } ++ } ++ while (it1 != A.end()) { ++ merged.push_back(*it1); ++ it1++; ++ } ++ while (it2 != B.end()) { ++ merged.push_back(*it2); ++ it2++; ++ } ++ std::swap(A, merged); ++} ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/NativeReanimatedModule.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/NativeReanimatedModule.h +new file mode 100644 +index 0000000..f44d6ff +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/NativeReanimatedModule.h +@@ -0,0 +1,247 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#include ++#include ++#include ++#endif // RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#endif // RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++class NativeReanimatedModule : public NativeReanimatedModuleSpec { ++ public: ++ NativeReanimatedModule( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsScheduler, ++ const std::shared_ptr &jsQueue, ++ const std::shared_ptr &uiScheduler, ++ const PlatformDepMethodsHolder &platformDepMethodsHolder, ++ const std::string &valueUnpackerCode, ++ const bool isBridgeless, ++ const bool isReducedMotion); ++ ++ ~NativeReanimatedModule(); ++ ++ jsi::Value makeShareableClone( ++ jsi::Runtime &rt, ++ const jsi::Value &value, ++ const jsi::Value &shouldRetainRemote, ++ const jsi::Value &nativeStateSource) override; ++ ++ void scheduleOnUI(jsi::Runtime &rt, const jsi::Value &worklet) override; ++ jsi::Value executeOnUIRuntimeSync(jsi::Runtime &rt, const jsi::Value &worklet) ++ override; ++ ++ jsi::Value createWorkletRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &initializer) override; ++ jsi::Value scheduleOnRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &workletRuntimeValue, ++ const jsi::Value &shareableWorkletValue) override; ++ ++ jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) override; ++ void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) override; ++ ++ jsi::Value getViewProp( ++ jsi::Runtime &rt, ++#ifdef RCT_NEW_ARCH_ENABLED ++ const jsi::Value &shadowNodeWrapper, ++#else ++ const jsi::Value &viewTag, ++#endif ++ const jsi::Value &propName, ++ const jsi::Value &callback) override; ++ ++ jsi::Value enableLayoutAnimations(jsi::Runtime &rt, const jsi::Value &config) ++ override; ++ jsi::Value configureProps( ++ jsi::Runtime &rt, ++ const jsi::Value &uiProps, ++ const jsi::Value &nativeProps) override; ++ jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) override; ++ void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) override; ++ ++ void onRender(double timestampMs); ++ ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ ++ void maybeRequestRender(); ++ ++ bool handleEvent( ++ const std::string &eventName, ++ const int emitterReactTag, ++ const jsi::Value &payload, ++ double currentTime); ++ ++ inline std::shared_ptr getJSLogger() const { ++ return jsLogger_; ++ } ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ bool handleRawEvent(const RawEvent &rawEvent, double currentTime); ++ ++ void updateProps(jsi::Runtime &rt, const jsi::Value &operations); ++ ++ void removeFromPropsRegistry(jsi::Runtime &rt, const jsi::Value &viewTags); ++ ++ void performOperations(); ++ ++ void dispatchCommand( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeValue, ++ const jsi::Value &commandNameValue, ++ const jsi::Value &argsValue); ++ ++ jsi::String obtainProp( ++ jsi::Runtime &rt, ++ const jsi::Value &shadowNodeWrapper, ++ const jsi::Value &propName); ++ ++ jsi::Value measure(jsi::Runtime &rt, const jsi::Value &shadowNodeValue); ++ ++ void initializeFabric(const std::shared_ptr &uiManager); ++ ++ void initializeLayoutAnimationsProxy(); ++ ++ std::string obtainPropFromShadowNode( ++ jsi::Runtime &rt, ++ const std::string &propName, ++ const ShadowNode::Shared &shadowNode); ++#endif ++ ++ jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) override; ++ void unregisterSensor(jsi::Runtime &rt, const jsi::Value &sensorId) override; ++ ++ void cleanupSensors(); ++ ++ jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) override; ++ void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) override; ++ ++ inline LayoutAnimationsManager &layoutAnimationsManager() { ++ return *layoutAnimationsManager_; ++ } ++ ++ inline jsi::Runtime &getUIRuntime() const { ++ return uiWorkletRuntime_->getJSIRuntime(); ++ } ++ ++ inline bool isBridgeless() const { ++ return isBridgeless_; ++ } ++ ++ inline bool isReducedMotion() const { ++ return isReducedMotion_; ++ } ++ ++ private: ++ void commonInit(const PlatformDepMethodsHolder &platformDepMethodsHolder); ++ ++ void requestAnimationFrame(jsi::Runtime &rt, const jsi::Value &callback); ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ bool isThereAnyLayoutProp(jsi::Runtime &rt, const jsi::Object &props); ++ jsi::Value filterNonAnimatableProps( ++ jsi::Runtime &rt, ++ const jsi::Value &props); ++#endif // RCT_NEW_ARCH_ENABLED ++ ++ const bool isBridgeless_; ++ const bool isReducedMotion_; ++ const std::shared_ptr jsQueue_; ++ const std::shared_ptr jsScheduler_; ++ const std::shared_ptr uiScheduler_; ++ std::shared_ptr uiWorkletRuntime_; ++ std::string valueUnpackerCode_; ++ ++ std::unique_ptr eventHandlerRegistry_; ++ const RequestRenderFunction requestRender_; ++ std::vector> frameCallbacks_; ++ volatile bool renderRequested_{false}; ++ const std::function onRenderCallback_; ++ AnimatedSensorModule animatedSensorModule_; ++ const std::shared_ptr jsLogger_; ++ std::shared_ptr layoutAnimationsManager_; ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ const SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction_; ++ ++ std::unordered_set nativePropNames_; // filled by configureProps ++ std::unordered_set ++ animatablePropNames_; // filled by configureProps ++ std::shared_ptr uiManager_; ++ std::shared_ptr layoutAnimationsProxy_; ++ ++ // After app reload, surfaceId on iOS is still 1 but on Android it's 11. ++ // We can store surfaceId of the most recent ShadowNode as a workaround. ++ SurfaceId surfaceId_ = -1; ++ ++ std::vector>> ++ operationsInBatch_; // TODO: refactor std::pair to custom struct ++ ++ std::shared_ptr propsRegistry_; ++ std::shared_ptr commitHook_; ++ std::shared_ptr mountHook_; ++ ++ std::vector tagsToRemove_; // from `propsRegistry_` ++#else ++ const ObtainPropFunction obtainPropFunction_; ++ const ConfigurePropsFunction configurePropsPlatformFunction_; ++ const UpdatePropsFunction updatePropsFunction_; ++#endif ++ ++ const KeyboardEventSubscribeFunction subscribeForKeyboardEventsFunction_; ++ const KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEventsFunction_; ++ ++#ifndef NDEBUG ++ SingleInstanceChecker singleInstanceChecker_; ++#endif ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/NativeReanimatedModuleSpec.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/NativeReanimatedModuleSpec.h +new file mode 100644 +index 0000000..89a6c20 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/NativeModules/NativeReanimatedModuleSpec.h +@@ -0,0 +1,106 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace reanimated { ++ ++class JSI_EXPORT NativeReanimatedModuleSpec : public TurboModule { ++ protected: ++ explicit NativeReanimatedModuleSpec( ++ const std::shared_ptr &jsInvoker); ++ ++ public: ++ // SharedValue ++ virtual jsi::Value makeShareableClone( ++ jsi::Runtime &rt, ++ const jsi::Value &value, ++ const jsi::Value &shouldRetainRemote, ++ const jsi::Value &nativeStateSource) = 0; ++ ++ // Scheduling ++ virtual void scheduleOnUI(jsi::Runtime &rt, const jsi::Value &worklet) = 0; ++ virtual jsi::Value executeOnUIRuntimeSync( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet) = 0; ++ ++ // Worklet runtime ++ virtual jsi::Value createWorkletRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &name, ++ const jsi::Value &initializer) = 0; ++ virtual jsi::Value scheduleOnRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &workletRuntimeValue, ++ const jsi::Value &shareableWorkletValue) = 0; ++ ++ // events ++ virtual jsi::Value registerEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value &worklet, ++ const jsi::Value &eventName, ++ const jsi::Value &emitterReactTag) = 0; ++ virtual void unregisterEventHandler( ++ jsi::Runtime &rt, ++ const jsi::Value ®istrationId) = 0; ++ ++ // views ++ virtual jsi::Value getViewProp( ++ jsi::Runtime &rt, ++#ifdef RCT_NEW_ARCH_ENABLED ++ const jsi::Value &shadowNodeWrapper, ++#else ++ const jsi::Value &viewTag, ++#endif ++ const jsi::Value &propName, ++ const jsi::Value &callback) = 0; ++ ++ // sensors ++ virtual jsi::Value registerSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorType, ++ const jsi::Value &interval, ++ const jsi::Value &iosReferenceFrame, ++ const jsi::Value &sensorDataContainer) = 0; ++ virtual void unregisterSensor( ++ jsi::Runtime &rt, ++ const jsi::Value &sensorId) = 0; ++ ++ // keyboard ++ virtual jsi::Value subscribeForKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &keyboardEventContainer, ++ const jsi::Value &isStatusBarTranslucent, ++ const jsi::Value &isNavigationBarTranslucent) = 0; ++ virtual void unsubscribeFromKeyboardEvents( ++ jsi::Runtime &rt, ++ const jsi::Value &listenerId) = 0; ++ ++ // other ++ virtual jsi::Value enableLayoutAnimations( ++ jsi::Runtime &rt, ++ const jsi::Value &config) = 0; ++ virtual jsi::Value configureProps( ++ jsi::Runtime &rt, ++ const jsi::Value &uiProps, ++ const jsi::Value &nativeProps) = 0; ++ ++ // layout animations ++ virtual jsi::Value configureLayoutAnimationBatch( ++ jsi::Runtime &rt, ++ const jsi::Value &layoutAnimationsBatch) = 0; ++ ++ virtual void setShouldAnimateExiting( ++ jsi::Runtime &rt, ++ const jsi::Value &viewTag, ++ const jsi::Value &shouldAnimate) = 0; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +new file mode 100644 +index 0000000..ff18f2c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/RNRuntimeDecorator.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class RNRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &nativeReanimatedModule); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.h +new file mode 100644 +index 0000000..da7f2a9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/ReanimatedWorkletRuntimeDecorator.h +@@ -0,0 +1,14 @@ ++#pragma once ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++class ReanimatedWorkletRuntimeDecorator { ++ public: ++ static void decorate(jsi::Runtime &rt); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +new file mode 100644 +index 0000000..9f1e478 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/RuntimeDecorators/UIRuntimeDecorator.h +@@ -0,0 +1,35 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++using namespace facebook; ++ ++namespace reanimated { ++ ++using RequestAnimationFrameFunction = ++ std::function; ++ ++class UIRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &uiRuntime, ++#ifdef RCT_NEW_ARCH_ENABLED ++ const RemoveFromPropsRegistryFunction removeFromPropsRegistry, ++#else ++ const ScrollToFunction scrollTo, ++#endif ++ const ObtainPropFunction obtainPropFunction, ++ const UpdatePropsFunction updateProps, ++ const MeasureFunction measure, ++ const DispatchCommandFunction dispatchCommand, ++ const RequestAnimationFrameFunction requestAnimationFrame, ++ const GetAnimationTimestampFunction getAnimationTimestamp, ++ const SetGestureStateFunction setGestureState, ++ const ProgressLayoutAnimationFunction progressLayoutAnimation, ++ const EndLayoutAnimationFunction endLayoutAnimation, ++ const MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueue); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/CollectionUtils.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/CollectionUtils.h +new file mode 100644 +index 0000000..9bf9c03 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/CollectionUtils.h +@@ -0,0 +1,14 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated { ++namespace collection { ++ ++template ++inline bool contains(const CollectionType &collection, const ValueType &value) { ++ return collection.find(value) != collection.end(); ++} ++ ++} // namespace collection ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeaturesConfig.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeaturesConfig.h +new file mode 100644 +index 0000000..c07e824 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/FeaturesConfig.h +@@ -0,0 +1,19 @@ ++#pragma once ++#include ++ ++namespace reanimated { ++ ++class FeaturesConfig { ++ public: ++ static inline bool isLayoutAnimationEnabled() { ++ return _isLayoutAnimationEnabled; ++ } ++ static inline void setLayoutAnimationEnabled(bool isLayoutAnimationEnabled) { ++ _isLayoutAnimationEnabled = isLayoutAnimationEnabled; ++ } ++ ++ private: ++ static bool _isLayoutAnimationEnabled; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h +new file mode 100644 +index 0000000..f5aa89f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformDepMethodsHolder.h +@@ -0,0 +1,102 @@ ++#pragma once ++ ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#endif ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++using namespace react; ++#endif ++ ++namespace reanimated { ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ ++using SynchronouslyUpdateUIPropsFunction = ++ std::function; ++using UpdatePropsFunction = ++ std::function; ++using RemoveFromPropsRegistryFunction = ++ std::function; ++using ObtainPropFunction = std::function; ++using DispatchCommandFunction = std::function; ++using MeasureFunction = std::function< ++ jsi::Value(jsi::Runtime &rt, const jsi::Value &shadowNodeValue)>; ++ ++#else ++ ++using UpdatePropsFunction = ++ std::function; ++using ScrollToFunction = std::function; ++using DispatchCommandFunction = std::function; ++using MeasureFunction = ++ std::function>(int)>; ++using ObtainPropFunction = ++ std::function; ++ ++#endif // RCT_NEW_ARCH_ENABLED ++ ++using RequestRenderFunction = ++ std::function, jsi::Runtime &)>; ++using GetAnimationTimestampFunction = std::function; ++ ++using ProgressLayoutAnimationFunction = ++ std::function; ++using EndLayoutAnimationFunction = std::function; ++ ++using RegisterSensorFunction = ++ std::function)>; ++using UnregisterSensorFunction = std::function; ++using SetGestureStateFunction = std::function; ++using ConfigurePropsFunction = std::function; ++using KeyboardEventSubscribeFunction = ++ std::function, bool, bool)>; ++using KeyboardEventUnsubscribeFunction = std::function; ++using MaybeFlushUIUpdatesQueueFunction = std::function; ++ ++struct PlatformDepMethodsHolder { ++ RequestRenderFunction requestRender; ++#ifdef RCT_NEW_ARCH_ENABLED ++ SynchronouslyUpdateUIPropsFunction synchronouslyUpdateUIPropsFunction; ++#else ++ UpdatePropsFunction updatePropsFunction; ++ ScrollToFunction scrollToFunction; ++ DispatchCommandFunction dispatchCommandFunction; ++ MeasureFunction measureFunction; ++ ConfigurePropsFunction configurePropsFunction; ++ ObtainPropFunction obtainPropFunction; ++#endif ++ GetAnimationTimestampFunction getAnimationTimestamp; ++ ProgressLayoutAnimationFunction progressLayoutAnimation; ++ EndLayoutAnimationFunction endLayoutAnimation; ++ RegisterSensorFunction registerSensor; ++ UnregisterSensorFunction unregisterSensor; ++ SetGestureStateFunction setGestureStateFunction; ++ KeyboardEventSubscribeFunction subscribeForKeyboardEvents; ++ KeyboardEventUnsubscribeFunction unsubscribeFromKeyboardEvents; ++ MaybeFlushUIUpdatesQueueFunction maybeFlushUIUpdatesQueueFunction; ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformLogger.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformLogger.h +new file mode 100644 +index 0000000..37db18e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/PlatformLogger.h +@@ -0,0 +1,16 @@ ++#pragma once ++ ++#include ++ ++namespace reanimated { ++ ++class PlatformLogger { ++ public: ++ static void log(const char *str); ++ static void log(const std::string &str); ++ static void log(const double d); ++ static void log(const int i); ++ static void log(const bool b); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/SingleInstanceChecker.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/SingleInstanceChecker.h +new file mode 100644 +index 0000000..2a183e8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/Tools/SingleInstanceChecker.h +@@ -0,0 +1,71 @@ ++#pragma once ++ ++#ifndef NDEBUG ++ ++#include ++ ++#include ++#include ++#include ++ ++#ifdef ANDROID ++#include ++#endif ++ ++namespace reanimated { ++ ++// This is a class that counts how many instances of a different class there ++// are. It is meant only to be used with classes that should only have one ++// instance. ++ ++template ++class SingleInstanceChecker { ++ public: ++ SingleInstanceChecker(); ++ ~SingleInstanceChecker(); ++ ++ private: ++ void assertWithMessage(bool condition, std::string message) { ++ if (!condition) { ++#ifdef ANDROID ++ __android_log_print( ++ ANDROID_LOG_WARN, "Reanimated", "%s", message.c_str()); ++#else ++ std::cerr << "[Reanimated] " << message << std::endl; ++#endif ++ ++#ifdef IS_REANIMATED_EXAMPLE_APP ++ assert(false); ++#endif ++ } ++ } ++ ++ // A static field will exist separately for every class template. ++ // This has to be inline for automatic initialization. ++ inline static std::atomic instanceCount_; ++}; ++ ++template ++SingleInstanceChecker::SingleInstanceChecker() { ++ int status = 0; ++ std::string className = ++ __cxxabiv1::__cxa_demangle(typeid(T).name(), nullptr, nullptr, &status); ++ ++ // Only one instance should exist, but it is possible for two instances ++ // to co-exist during a reload. ++ assertWithMessage( ++ instanceCount_ <= 1, ++ "[Reanimated] More than one instance of " + className + ++ " present. This may indicate a memory leak due to a retain cycle."); ++ ++ instanceCount_++; ++} ++ ++template ++SingleInstanceChecker::~SingleInstanceChecker() { ++ instanceCount_--; ++} ++ ++} // namespace reanimated ++ ++#endif // NDEBUG +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AndroidUIScheduler.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AndroidUIScheduler.h +new file mode 100644 +index 0000000..e9e7c94 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/AndroidUIScheduler.h +@@ -0,0 +1,44 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace worklets; ++ ++class AndroidUIScheduler : public jni::HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/AndroidUIScheduler;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis); ++ static void registerNatives(); ++ ++ std::shared_ptr getUIScheduler() { ++ return uiScheduler_; ++ } ++ ++ void scheduleTriggerOnUI(); ++ ++ private: ++ friend HybridBase; ++ ++ void triggerUI(); ++ ++ jni::global_ref javaPart_; ++ std::shared_ptr uiScheduler_; ++ ++ explicit AndroidUIScheduler( ++ jni::alias_ref jThis); ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/JNIHelper.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/JNIHelper.h +new file mode 100644 +index 0000000..4be3555 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/JNIHelper.h +@@ -0,0 +1,30 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::jni; ++using namespace facebook; ++using namespace react; ++ ++struct JNIHelper { ++ struct PropsMap : jni::JavaClass> { ++ static constexpr auto kJavaDescriptor = "Ljava/util/HashMap;"; ++ ++ static local_ref create(); ++ void put(const std::string &key, jni::local_ref object); ++ }; ++ ++ static jni::local_ref ConvertToPropsMap( ++ jsi::Runtime &rt, ++ const jsi::Object &props); ++}; ++ ++}; // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/LayoutAnimations.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/LayoutAnimations.h +new file mode 100644 +index 0000000..87e874e +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/LayoutAnimations.h +@@ -0,0 +1,89 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++namespace reanimated { ++ ++using namespace facebook::jni; ++using namespace facebook; ++ ++class LayoutAnimations : public jni::HybridClass { ++ using AnimationStartingBlock = ++ std::function>)>; ++ using HasAnimationBlock = std::function; ++ using ShouldAnimateExitingBlock = std::function; ++#ifndef NDEBUG ++ using CheckDuplicateSharedTag = std::function; ++#endif ++ using ClearAnimationConfigBlock = std::function; ++ using CancelAnimationBlock = std::function; ++ using FindPrecedingViewTagForTransitionBlock = std::function; ++ using GetSharedGroupBlock = std::function(const int)>; ++ ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/layoutReanimation/LayoutAnimations;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis); ++ static void registerNatives(); ++ ++ void startAnimationForTag( ++ int tag, ++ int type, ++ alias_ref> values); ++ bool hasAnimationForTag(int tag, int type); ++ bool shouldAnimateExiting(int tag, bool shouldAnimate); ++ bool isLayoutAnimationEnabled(); ++ ++ void setAnimationStartingBlock(AnimationStartingBlock animationStartingBlock); ++ void setHasAnimationBlock(HasAnimationBlock hasAnimationBlock); ++ void setShouldAnimateExitingBlock( ++ ShouldAnimateExitingBlock shouldAnimateExitingBlock); ++#ifndef NDEBUG ++ void setCheckDuplicateSharedTag( ++ CheckDuplicateSharedTag checkDuplicateSharedTag); ++ void checkDuplicateSharedTag(int viewTag, int screenTag); ++#endif ++ void setClearAnimationConfigBlock( ++ ClearAnimationConfigBlock clearAnimationConfigBlock); ++ void setCancelAnimationForTag(CancelAnimationBlock cancelAnimationBlock); ++ void setFindPrecedingViewTagForTransition( ++ FindPrecedingViewTagForTransitionBlock ++ findPrecedingViewTagForTransitionBlock); ++ void setGetSharedGroupBlock(const GetSharedGroupBlock getSharedGroupBlock); ++ ++ void progressLayoutAnimation( ++ int tag, ++ const jni::local_ref &updates, ++ bool isSharedTransition); ++ void endLayoutAnimation(int tag, bool removeView); ++ void clearAnimationConfigForTag(int tag); ++ void cancelAnimationForTag(int tag); ++ int findPrecedingViewTagForTransition(int tag); ++ jni::local_ref getSharedGroup(const int tag); ++ ++ private: ++ friend HybridBase; ++ jni::global_ref javaPart_; ++ AnimationStartingBlock animationStartingBlock_; ++ HasAnimationBlock hasAnimationBlock_; ++ ShouldAnimateExitingBlock shouldAnimateExitingBlock_; ++ ClearAnimationConfigBlock clearAnimationConfigBlock_; ++ CancelAnimationBlock cancelAnimationBlock_; ++ FindPrecedingViewTagForTransitionBlock ++ findPrecedingViewTagForTransitionBlock_; ++ GetSharedGroupBlock getSharedGroupBlock_; ++#ifndef NDEBUG ++ CheckDuplicateSharedTag checkDuplicateSharedTag_; ++#endif ++ ++ explicit LayoutAnimations( ++ jni::alias_ref jThis); ++}; ++ ++}; // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h +new file mode 100644 +index 0000000..462eecb +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/reanimated/reanimated/android/NativeProxy.h +@@ -0,0 +1,310 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++#include ++#include ++#if REACT_NATIVE_MINOR_VERSION >= 74 ++#include ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 ++#endif // RCT_NEW_ARCH_ENABLED ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace reanimated { ++ ++using namespace facebook; ++using namespace facebook::jni; ++ ++class AnimationFrameCallback : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/AnimationFrameCallback;"; ++ ++ void onAnimationFrame(double timestampMs) { ++ callback_(timestampMs); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod( ++ "onAnimationFrame", AnimationFrameCallback::onAnimationFrame), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit AnimationFrameCallback(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++class EventHandler : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/EventHandler;"; ++ ++ void receiveEvent( ++ jni::alias_ref eventKey, ++ jint emitterReactTag, ++ jni::alias_ref event) { ++ handler_(eventKey, emitterReactTag, event); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("receiveEvent", EventHandler::receiveEvent), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit EventHandler(std::function, ++ jint emitterReactTag, ++ jni::alias_ref)> handler) ++ : handler_(std::move(handler)) {} ++ ++ std::function< ++ void(jni::alias_ref, jint, jni::alias_ref)> ++ handler_; ++}; ++ ++class SensorSetter : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/nativeProxy/SensorSetter;"; ++ ++ void sensorSetter(jni::alias_ref value, int orientationDegrees) { ++ size_t size = value->size(); ++ auto elements = value->getRegion(0, size); ++ double array[7]; ++ for (size_t i = 0; i < size; i++) { ++ array[i] = elements[i]; ++ } ++ callback_(array, orientationDegrees); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("sensorSetter", SensorSetter::sensorSetter), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit SensorSetter(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++class KeyboardWorkletWrapper : public HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/keyboard/KeyboardWorkletWrapper;"; ++ ++ void invoke(int keyboardState, int height) { ++ callback_(keyboardState, height); ++ } ++ ++ static void registerNatives() { ++ javaClassStatic()->registerNatives({ ++ makeNativeMethod("invoke", KeyboardWorkletWrapper::invoke), ++ }); ++ } ++ ++ private: ++ friend HybridBase; ++ ++ explicit KeyboardWorkletWrapper(std::function callback) ++ : callback_(std::move(callback)) {} ++ ++ std::function callback_; ++}; ++ ++class NativeProxy : public jni::HybridClass { ++ public: ++ static auto constexpr kJavaDescriptor = ++ "Lcom/swmansion/reanimated/NativeProxy;"; ++ static jni::local_ref initHybrid( ++ jni::alias_ref jThis, ++ jlong jsContext, ++ jni::alias_ref ++ jsCallInvokerHolder, ++ jni::alias_ref androidUiScheduler, ++ jni::alias_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++#ifdef RCT_NEW_ARCH_ENABLED ++ jni::alias_ref ++ fabricUIManager, ++#endif ++ const std::string &valueUnpackerCode); ++ ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ static jni::local_ref initHybridBridgeless( ++ jni::alias_ref jThis, ++ jlong jsContext, ++ jni::alias_ref runtimeExecutorHolder, ++ jni::alias_ref androidUiScheduler, ++ jni::alias_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++ jni::alias_ref ++ fabricUIManager, ++ const std::string &valueUnpackerCode); ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ static void registerNatives(); ++ ++ ~NativeProxy(); ++ ++ private: ++ friend HybridBase; ++ jni::global_ref javaPart_; ++ jsi::Runtime *rnRuntime_; ++ std::shared_ptr nativeReanimatedModule_; ++ jni::global_ref layoutAnimations_; ++#ifndef NDEBUG ++ void checkJavaVersion(jsi::Runtime &); ++ void injectCppVersion(); ++#endif // NDEBUG ++#ifdef RCT_NEW_ARCH_ENABLED ++ // removed temporarily, event listener mechanism needs to be fixed on RN side ++ // std::shared_ptr reactScheduler_; ++ // std::shared_ptr eventListener_; ++#endif // RCT_NEW_ARCH_ENABLED ++ void installJSIBindings(); ++#ifdef RCT_NEW_ARCH_ENABLED ++ void synchronouslyUpdateUIProps( ++ jsi::Runtime &rt, ++ Tag viewTag, ++ const jsi::Object &props); ++#endif ++ PlatformDepMethodsHolder getPlatformDependentMethods(); ++ void setupLayoutAnimations(); ++ ++ double getAnimationTimestamp(); ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++ void performOperations(); ++ bool getIsReducedMotion(); ++ void requestRender(std::function onRender, jsi::Runtime &rt); ++ void registerEventHandler(); ++ void maybeFlushUIUpdatesQueue(); ++ void setGestureState(int handlerTag, int newState); ++ int registerSensor( ++ int sensorType, ++ int interval, ++ int iosReferenceFrame, ++ std::function setter); ++ void unregisterSensor(int sensorId); ++ int subscribeForKeyboardEvents( ++ std::function callback, ++ bool isStatusBarTranslucent, ++ bool isNavigationBarTranslucent); ++ void unsubscribeFromKeyboardEvents(int listenerId); ++#ifdef RCT_NEW_ARCH_ENABLED ++ // nothing ++#else ++ jsi::Value ++ obtainProp(jsi::Runtime &rt, const int viewTag, const jsi::Value &propName); ++ void configureProps( ++ jsi::Runtime &rt, ++ const jsi::Value &uiProps, ++ const jsi::Value &nativeProps); ++ void updateProps(jsi::Runtime &rt, const jsi::Value &operations); ++ void scrollTo(int viewTag, double x, double y, bool animated); ++ void dispatchCommand( ++ jsi::Runtime &rt, ++ const int viewTag, ++ const jsi::Value &commandNameValue, ++ const jsi::Value &argsValue); ++ std::vector> measure(int viewTag); ++#endif ++ void handleEvent( ++ jni::alias_ref eventName, ++ jint emitterReactTag, ++ jni::alias_ref event); ++ ++ void progressLayoutAnimation( ++ jsi::Runtime &rt, ++ int tag, ++ const jsi::Object &newProps, ++ bool isSharedTransition); ++ ++ /*** ++ * Wraps a method of `NativeProxy` in a function object capturing `this` ++ * @tparam TReturn return type of passed method ++ * @tparam TParams paramater types of passed method ++ * @param methodPtr pointer to method to be wrapped ++ * @return a function object with the same signature as the method, calling ++ * that method on `this` ++ */ ++ template ++ std::function bindThis( ++ TReturn (NativeProxy::*methodPtr)(TParams...)) { ++ return [this, methodPtr](TParams &&...args) { ++ return (this->*methodPtr)(std::forward(args)...); ++ }; ++ } ++ ++ template ++ JMethod getJniMethod(std::string const &methodName) { ++ return javaPart_->getClass()->getMethod(methodName.c_str()); ++ } ++ ++ explicit NativeProxy( ++ jni::alias_ref jThis, ++ jsi::Runtime *rnRuntime, ++ const std::shared_ptr &jsCallInvoker, ++ const std::shared_ptr &uiScheduler, ++ jni::global_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++#ifdef RCT_NEW_ARCH_ENABLED ++ jni::alias_ref ++ fabricUIManager, ++#endif ++ const std::string &valueUnpackerCode); ++ ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ explicit NativeProxy( ++ jni::alias_ref jThis, ++ jsi::Runtime *rnRuntime, ++ RuntimeExecutor runtimeExecutor, ++ const std::shared_ptr &uiScheduler, ++ jni::global_ref layoutAnimations, ++ jni::alias_ref messageQueueThread, ++ jni::alias_ref ++ fabricUIManager, ++ const std::string &valueUnpackerCode); ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ ++#ifdef RCT_NEW_ARCH_ENABLED ++ void commonInit(jni::alias_ref ++ &fabricUIManager); ++#endif // RCT_NEW_ARCH_ENABLED ++}; ++ ++} // namespace reanimated +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Registries/EventHandlerRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Registries/EventHandlerRegistry.h +new file mode 100644 +index 0000000..332bf6f +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Registries/EventHandlerRegistry.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletEventHandler; ++ ++class EventHandlerRegistry { ++ std::map< ++ std::pair, ++ std::unordered_map>> ++ eventMappingsWithTag; ++ std::map< ++ std::string, ++ std::unordered_map>> ++ eventMappingsWithoutTag; ++ std::map> eventHandlers; ++ std::mutex instanceMutex; ++ ++ public: ++ void registerEventHandler( ++ const std::shared_ptr &eventHandler); ++ void unregisterEventHandler(const uint64_t id); ++ ++ void processEvent( ++ const std::shared_ptr &uiWorkletRuntime, ++ const double eventTimestamp, ++ const std::string &eventName, ++ const int emitterReactTag, ++ const jsi::Value &eventPayload); ++ ++ bool isAnyHandlerWaitingForEvent( ++ const std::string &eventName, ++ const int emitterReactTag); ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Registries/WorkletRuntimeRegistry.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Registries/WorkletRuntimeRegistry.h +new file mode 100644 +index 0000000..2db90d5 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Registries/WorkletRuntimeRegistry.h +@@ -0,0 +1,39 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletRuntimeRegistry { ++ private: ++ static std::set registry_; ++ static std::mutex mutex_; // Protects `registry_`. ++ ++ WorkletRuntimeRegistry() {} // private ctor ++ ++ static void registerRuntime(jsi::Runtime &runtime) { ++ std::lock_guard lock(mutex_); ++ registry_.insert(&runtime); ++ } ++ ++ static void unregisterRuntime(jsi::Runtime &runtime) { ++ std::lock_guard lock(mutex_); ++ registry_.erase(&runtime); ++ } ++ ++ friend class WorkletRuntimeCollector; ++ ++ public: ++ static bool isRuntimeAlive(jsi::Runtime *runtime) { ++ assert(runtime != nullptr); ++ std::lock_guard lock(mutex_); ++ return registry_.find(runtime) != registry_.end(); ++ } ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/SharedItems/Shareables.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/SharedItems/Shareables.h +new file mode 100644 +index 0000000..8c2f903 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/SharedItems/Shareables.h +@@ -0,0 +1,363 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++jsi::Function getValueUnpacker(jsi::Runtime &rt); ++ ++#ifndef NDEBUG ++jsi::Function getCallGuard(jsi::Runtime &rt); ++#endif // NDEBUG ++ ++// If possible, please use `WorkletRuntime::runGuarded` instead. ++template ++inline jsi::Value runOnRuntimeGuarded( ++ jsi::Runtime &rt, ++ const jsi::Value &function, ++ Args &&...args) { ++ // We only use callGuard in debug mode, otherwise we call the provided ++ // function directly. CallGuard provides a way of capturing exceptions in ++ // JavaScript and propagating them to the main React Native thread such that ++ // they can be presented using RN's LogBox. ++#ifndef NDEBUG ++ return getCallGuard(rt).call(rt, function, args...); ++#else ++ return function.asObject(rt).asFunction(rt).call(rt, args...); ++#endif ++} ++ ++inline void cleanupIfRuntimeExists( ++ jsi::Runtime *rt, ++ std::unique_ptr &value) { ++ if (rt != nullptr && !WorkletRuntimeRegistry::isRuntimeAlive(rt)) { ++ // The below use of unique_ptr.release prevents the smart pointer from ++ // calling the destructor of the kept object. This effectively results in ++ // leaking some memory. We do this on purpose, as sometimes we would keep ++ // references to JSI objects past the lifetime of its runtime (e.g., ++ // shared values references from the RN VM holds reference to JSI objects ++ // on the UI runtime). When the UI runtime is terminated, the orphaned JSI ++ // objects would crash the app when their destructors are called, because ++ // they call into a memory that's managed by the terminated runtime. We ++ // accept the tradeoff of leaking memory here, as it has a limited impact. ++ // This scenario can only occur when the React instance is torn down which ++ // happens in development mode during app reloads, or in production when ++ // the app is being shut down gracefully by the system. An alternative ++ // solution would require us to keep track of all JSI values that are in ++ // use which would require additional data structure and compute spent on ++ // bookkeeping that only for the sake of destroying the values in time ++ // before the runtime is terminated. Note that the underlying memory that ++ // jsi::Value refers to is managed by the VM and gets freed along with the ++ // runtime. ++ value.release(); ++ } ++} ++ ++class Shareable { ++ public: ++ virtual jsi::Value toJSValue(jsi::Runtime &rt) = 0; ++ ++ virtual ~Shareable(); ++ ++ enum ValueType { ++ UndefinedType, ++ NullType, ++ BooleanType, ++ NumberType, ++ // SymbolType, TODO ++ BigIntType, ++ StringType, ++ ObjectType, ++ ArrayType, ++ WorkletType, ++ RemoteFunctionType, ++ HandleType, ++ HostObjectType, ++ HostFunctionType, ++ ArrayBufferType, ++ }; ++ ++ explicit Shareable(ValueType valueType) : valueType_(valueType) {} ++ ++ inline ValueType valueType() const { ++ return valueType_; ++ } ++ ++ static std::shared_ptr undefined(); ++ ++ protected: ++ ValueType valueType_; ++}; ++ ++template ++class RetainingShareable : virtual public BaseClass { ++ private: ++ jsi::Runtime *primaryRuntime_; ++ jsi::Runtime *secondaryRuntime_; ++ std::unique_ptr secondaryValue_; ++ ++ public: ++ template ++ explicit RetainingShareable(jsi::Runtime &rt, Args &&...args) ++ : BaseClass(rt, std::forward(args)...), primaryRuntime_(&rt) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt); ++ ++ ~RetainingShareable() { ++ cleanupIfRuntimeExists(secondaryRuntime_, secondaryValue_); ++ } ++}; ++ ++class ShareableJSRef : public jsi::HostObject { ++ private: ++ const std::shared_ptr value_; ++ ++ public: ++ explicit ShareableJSRef(const std::shared_ptr &value) ++ : value_(value) {} ++ ++ virtual ~ShareableJSRef(); ++ ++ std::shared_ptr value() const { ++ return value_; ++ } ++ ++ static jsi::Object newHostObject( ++ jsi::Runtime &rt, ++ const std::shared_ptr &value) { ++ return jsi::Object::createFromHostObject( ++ rt, std::make_shared(value)); ++ } ++}; ++ ++jsi::Value makeShareableClone( ++ jsi::Runtime &rt, ++ const jsi::Value &value, ++ const jsi::Value &shouldRetainRemote, ++ const jsi::Value &nativeStateSource); ++ ++std::shared_ptr extractShareableOrThrow( ++ jsi::Runtime &rt, ++ const jsi::Value &maybeShareableValue, ++ const std::string &errorMessage = ++ "[Reanimated] Expecting the object to be of type ShareableJSRef."); ++ ++template ++std::shared_ptr extractShareableOrThrow( ++ jsi::Runtime &rt, ++ const jsi::Value &shareableRef, ++ const std::string &errorMessage = ++ "[Reanimated] Provided shareable object is of an incompatible type.") { ++ auto res = std::dynamic_pointer_cast( ++ extractShareableOrThrow(rt, shareableRef, errorMessage)); ++ if (!res) { ++ throw std::runtime_error(errorMessage); ++ } ++ return res; ++} ++ ++class ShareableArray : public Shareable { ++ public: ++ ShareableArray(jsi::Runtime &rt, const jsi::Array &array); ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ std::vector> data_; ++}; ++ ++class ShareableObject : public Shareable { ++ public: ++ ShareableObject(jsi::Runtime &rt, const jsi::Object &object); ++ ++#if defined(USE_HERMES) || REACT_NATIVE_MINOR_VERSION >= 74 ++#define SUPPORTS_NATIVE_STATE 1 ++#else ++#define SUPPORTS_NATIVE_STATE 0 ++#endif ++ ++#if SUPPORTS_NATIVE_STATE ++ ShareableObject( ++ jsi::Runtime &rt, ++ const jsi::Object &object, ++ const jsi::Value &nativeStateSource); ++#endif // SUPPORTS_NATIVE_STATE ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ std::vector>> data_; ++#if SUPPORTS_NATIVE_STATE ++ std::shared_ptr nativeState_; ++#endif // SUPPORTS_NATIVE_STATE ++}; ++ ++class ShareableHostObject : public Shareable { ++ public: ++ ShareableHostObject( ++ jsi::Runtime &, ++ const std::shared_ptr &hostObject) ++ : Shareable(HostObjectType), hostObject_(hostObject) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::shared_ptr hostObject_; ++}; ++ ++class ShareableHostFunction : public Shareable { ++ public: ++ ShareableHostFunction(jsi::Runtime &rt, jsi::Function function) ++ : Shareable(HostFunctionType), ++ hostFunction_( ++ (assert(function.isHostFunction(rt)), ++ function.getHostFunction(rt))), ++ name_(function.getProperty(rt, "name").asString(rt).utf8(rt)), ++ paramCount_(function.getProperty(rt, "length").asNumber()) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const jsi::HostFunctionType hostFunction_; ++ const std::string name_; ++ const unsigned int paramCount_; ++}; ++ ++class ShareableArrayBuffer : public Shareable { ++ public: ++ ShareableArrayBuffer( ++ jsi::Runtime &rt, ++#if REACT_NATIVE_MINOR_VERSION >= 72 ++ const jsi::ArrayBuffer &arrayBuffer ++#else ++ jsi::ArrayBuffer arrayBuffer ++#endif ++ ) ++ : Shareable(ArrayBufferType), ++ data_( ++ arrayBuffer.data(rt), ++ arrayBuffer.data(rt) + arrayBuffer.size(rt)) { ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::vector data_; ++}; ++ ++class ShareableWorklet : public ShareableObject { ++ public: ++ ShareableWorklet(jsi::Runtime &rt, const jsi::Object &worklet) ++ : ShareableObject(rt, worklet) { ++ valueType_ = WorkletType; ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++}; ++ ++class ShareableRemoteFunction ++ : public Shareable, ++ public std::enable_shared_from_this { ++ private: ++ jsi::Runtime *runtime_; ++#ifndef NDEBUG ++ const std::string name_; ++#endif ++ std::unique_ptr function_; ++ ++ public: ++ ShareableRemoteFunction(jsi::Runtime &rt, jsi::Function &&function) ++ : Shareable(RemoteFunctionType), ++ runtime_(&rt), ++#ifndef NDEBUG ++ name_(function.getProperty(rt, "name").asString(rt).utf8(rt)), ++#endif ++ function_(std::make_unique(rt, std::move(function))) { ++ } ++ ++ ~ShareableRemoteFunction() { ++ cleanupIfRuntimeExists(runtime_, function_); ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++}; ++ ++class ShareableHandle : public Shareable { ++ private: ++ // We don't release the initializer since the handle can get ++ // initialized in parallel on multiple threads. However this is not a problem, ++ // since the final value is taken from a cache on the runtime which guarantees ++ // sequential access. ++ std::unique_ptr initializer_; ++ std::unique_ptr remoteValue_; ++ mutable std::mutex initializationMutex_; ++ jsi::Runtime *remoteRuntime_; ++ ++ public: ++ ShareableHandle(jsi::Runtime &rt, const jsi::Object &initializerObject) ++ : Shareable(HandleType), ++ initializer_(std::make_unique(rt, initializerObject)) { ++ } ++ ++ ~ShareableHandle() { ++ cleanupIfRuntimeExists(remoteRuntime_, remoteValue_); ++ } ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++}; ++ ++class ShareableString : public Shareable { ++ public: ++ explicit ShareableString(const std::string &string) ++ : Shareable(StringType), data_(string) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::string data_; ++}; ++ ++class ShareableBigInt : public Shareable { ++ public: ++ explicit ShareableBigInt(jsi::Runtime &rt, const jsi::BigInt &bigint) ++ : Shareable(BigIntType), string_(bigint.toString(rt).utf8(rt)) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &rt) override; ++ ++ protected: ++ const std::string string_; ++}; ++ ++class ShareableScalar : public Shareable { ++ public: ++ explicit ShareableScalar(double number) : Shareable(NumberType) { ++ data_.number = number; ++ } ++ explicit ShareableScalar(bool boolean) : Shareable(BooleanType) { ++ data_.boolean = boolean; ++ } ++ ShareableScalar() : Shareable(UndefinedType) {} ++ explicit ShareableScalar(std::nullptr_t) : Shareable(NullType) {} ++ ++ jsi::Value toJSValue(jsi::Runtime &); ++ ++ protected: ++ union Data { ++ bool boolean; ++ double number; ++ }; ++ ++ private: ++ Data data_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/AsyncQueue.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/AsyncQueue.h +new file mode 100644 +index 0000000..af565fc +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/AsyncQueue.h +@@ -0,0 +1,35 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++namespace worklets { ++ ++struct AsyncQueueState { ++ std::atomic_bool running{true}; ++ std::mutex mutex; ++ std::condition_variable cv; ++ std::queue> queue; ++}; ++ ++class AsyncQueue { ++ public: ++ explicit AsyncQueue(std::string name); ++ ++ ~AsyncQueue(); ++ ++ void push(std::function &&job); ++ ++ private: ++ const std::shared_ptr state_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSISerializer.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSISerializer.h +new file mode 100644 +index 0000000..55b509c +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSISerializer.h +@@ -0,0 +1,47 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class JSISerializer { ++ public: ++ explicit JSISerializer(jsi::Runtime &rt); ++ std::string stringifyJSIValueRecursively( ++ const jsi::Value &value, ++ bool isTopLevel = false); ++ ++ private: ++ std::string stringifyArray(const jsi::Array &arr); ++ std::string stringifyFunction(const jsi::Function &func); ++ std::string stringifyHostObject(jsi::HostObject &hostObject); ++ std::string stringifyObject(const jsi::Object &object); ++ std::string stringifyError(const jsi::Object &object); ++ std::string stringifySet(const jsi::Object &object); ++ std::string stringifyMap(const jsi::Object &object); ++ std::string stringifyWithName(const jsi::Object &object); ++ std::string stringifyWithToString(const jsi::Object &object); ++ std::string stringifyRecursiveType(const jsi::Object &object); ++ ++ bool hasBeenVisited(const jsi::Object &object) { ++ return visitedNodes_.getPropertyAsFunction(rt_, "has") ++ .callWithThis(rt_, visitedNodes_, object) ++ .getBool(); ++ } ++ ++ void markAsVisited(const jsi::Object &object) { ++ visitedNodes_.getPropertyAsFunction(rt_, "add") ++ .callWithThis(rt_, visitedNodes_, object); ++ } ++ ++ jsi::Runtime &rt_; ++ jsi::Object visitedNodes_; ++}; ++ ++std::string stringifyJSIValue(jsi::Runtime &rt, const jsi::Value &value); ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSLogger.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSLogger.h +new file mode 100644 +index 0000000..ce63310 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSLogger.h +@@ -0,0 +1,20 @@ ++#pragma once ++ ++#include ++ ++#include ++#include ++ ++namespace worklets { ++ ++class JSLogger { ++ public: ++ explicit JSLogger(const std::shared_ptr &jsScheduler) ++ : jsScheduler_(jsScheduler) {} ++ void warnOnJS(const std::string &warning) const; ++ ++ private: ++ const std::shared_ptr jsScheduler_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSScheduler.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSScheduler.h +new file mode 100644 +index 0000000..217dbfd +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/JSScheduler.h +@@ -0,0 +1,41 @@ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace worklets { ++ ++class JSScheduler { ++ using Job = std::function; ++ ++ public: ++ // With `jsCallInvoker`. ++ explicit JSScheduler( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsCallInvoker); ++ ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ // With `runtimeExecutor`. ++ explicit JSScheduler( ++ jsi::Runtime &rnRuntime, ++ RuntimeExecutor runtimeExecutor); ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ ++ const std::function scheduleOnJS = nullptr; ++ const std::shared_ptr getJSCallInvoker() const; ++ ++ protected: ++ jsi::Runtime &rnRuntime_; ++#if REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED) ++ RuntimeExecutor runtimeExecutor_ = nullptr; ++#endif // REACT_NATIVE_MINOR_VERSION >= 74 && defined(RCT_NEW_ARCH_ENABLED ++ const std::shared_ptr jsCallInvoker_ = nullptr; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ReanimatedJSIUtils.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ReanimatedJSIUtils.h +new file mode 100644 +index 0000000..857031d +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ReanimatedJSIUtils.h +@@ -0,0 +1,174 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets::jsi_utils { ++ ++// `get` functions take a pointer to `jsi::Value` and ++// call an appropriate method to cast to the native type ++template ++inline T get(jsi::Runtime &rt, const jsi::Value *value); ++ ++template <> ++inline double get(jsi::Runtime &, const jsi::Value *value) { ++ return value->asNumber(); ++} ++ ++template <> ++inline int get(jsi::Runtime &, const jsi::Value *value) { ++ return value->asNumber(); ++} ++ ++template <> ++inline bool get(jsi::Runtime &, const jsi::Value *value) { ++ if (!value->isBool()) { ++ throw jsi::JSINativeException("[Reanimated] Expected a boolean."); ++ } ++ return value->getBool(); ++} ++ ++template <> ++inline jsi::Object get(jsi::Runtime &rt, const jsi::Value *value) { ++ return value->asObject(rt); ++} ++ ++template <> ++inline jsi::Value const &get( ++ jsi::Runtime &, ++ const jsi::Value *value) { ++ return *value; ++} ++ ++// `convertArgs` functions take a variadic template parameter of target (C++) ++// argument types `Targs` and a `jsi::Value` array `args`, and converts `args` ++// to a tuple of typed C++ arguments to be passed to the native implementation. ++// This is accomplished by dispatching (at compile time) to the correct ++// implementation based on the first type of `Targs`, using SFINAE to select the ++// correct specialization, and concatenating with the result of recursion on the ++// rest of `Targs` ++ ++// BEGIN implementations for `convertArgs` specializations. ++// specialization for empty `Targs` - returns an empty tuple ++template ++inline std::enable_if_t<(sizeof...(Args) == 0), std::tuple<>> convertArgs( ++ jsi::Runtime &, ++ const jsi::Value *) { ++ return std::make_tuple(); ++} ++ ++// calls `get` on the first argument to retrieve the native type, ++// then calls recursively on the rest of `args` ++// and returns the concatenation of results ++template ++inline std::tuple convertArgs( ++ jsi::Runtime &rt, ++ const jsi::Value *args) { ++ auto arg = std::tuple(get(rt, args)); ++ auto rest = convertArgs(rt, std::next(args)); ++ return std::tuple_cat(std::move(arg), std::move(rest)); ++} ++// END implementations for `convertArgs` specializations. ++ ++// returns a tuple with the result of casting `args` to appropriate ++// native C++ types needed to call `function` ++template ++std::tuple getArgsForFunction( ++ std::function, ++ jsi::Runtime &rt, ++ const jsi::Value *args, ++ const size_t count) { ++ assert(sizeof...(Args) == count); ++ return convertArgs(rt, args); ++} ++ ++// returns a tuple with the result of casting `args` to appropriate ++// native C++ types needed to call `function`, ++// passing `rt` as the first argument ++template ++std::tuple getArgsForFunction( ++ std::function, ++ jsi::Runtime &rt, ++ const jsi::Value *args, ++ const size_t count) { ++ assert(sizeof...(Args) == count); ++ return std::tuple_cat(std::tie(rt), convertArgs(rt, args)); ++} ++ ++// calls `function` with `args` ++template ++inline jsi::Value apply( ++ std::function function, ++ std::tuple args) { ++ return std::apply(function, std::move(args)); ++} ++ ++// calls void-returning `function` with `args`, ++// and returns `undefined` ++template ++inline jsi::Value apply( ++ std::function function, ++ std::tuple args) { ++ std::apply(function, std::move(args)); ++ return jsi::Value::undefined(); ++} ++ ++// returns a function with JSI calling convention ++// from a native function `function` ++template ++jsi::HostFunctionType createHostFunction(Fun function) { ++ return [function]( ++ jsi::Runtime &rt, ++ const jsi::Value &, ++ const jsi::Value *args, ++ const size_t count) { ++ auto argz = getArgsForFunction(function, rt, args, count); ++ return apply(function, std::move(argz)); ++ }; ++} ++ ++// used to determine if `function` ++// takes `Runtime &` as its first argument ++template ++struct takes_runtime { ++ static constexpr size_t value = 0; ++}; ++ ++// specialization for `function ++struct takes_runtime { ++ static constexpr size_t value = 1; ++}; ++ ++// creates a JSI compatible function from `function` ++// and installs it as a global function named `name` ++// in the `rt` JS runtime ++template ++void installJsiFunction( ++ jsi::Runtime &rt, ++ std::string_view name, ++ std::function function) { ++ auto clb = createHostFunction(function); ++ auto argsCount = sizeof...(Args) - takes_runtime::value; ++ jsi::Value jsiFunction = jsi::Function::createFromHostFunction( ++ rt, jsi::PropNameID::forAscii(rt, name.data()), argsCount, clb); ++ rt.global().setProperty(rt, name.data(), jsiFunction); ++} ++ ++// this should take care of passing types convertible to `function` ++template ++void installJsiFunction(jsi::Runtime &rt, std::string_view name, Fun function) { ++ installJsiFunction(rt, name, std::function(std::forward(function))); ++} ++ ++jsi::Array convertStringToArray( ++ jsi::Runtime &rt, ++ const std::string &value, ++ const unsigned int expectedSize); ++ ++} // namespace worklets::jsi_utils +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ReanimatedVersion.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ReanimatedVersion.h +new file mode 100644 +index 0000000..80dfa75 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ReanimatedVersion.h +@@ -0,0 +1,19 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++std::string getReanimatedCppVersion(); ++void injectReanimatedCppVersion(jsi::Runtime &); ++bool matchVersion(const std::string &, const std::string &); ++void checkJSVersion(jsi::Runtime &, const std::shared_ptr &); ++ ++}; // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ThreadSafeQueue.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ThreadSafeQueue.h +new file mode 100644 +index 0000000..de53d84 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/ThreadSafeQueue.h +@@ -0,0 +1,49 @@ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++namespace worklets { ++ ++// ++// Copyright (c) 2013 Juan Palacios juan.palacios.puyana@gmail.com ++// Subject to the BSD 2-Clause License ++// - see < https://opensource.org/license/bsd-2-clause/ > ++// ++template ++class ThreadSafeQueue { ++ public: ++ T pop() { ++ std::unique_lock mlock(mutex_); ++ while (queue_.empty()) { ++ cond_.wait(mlock); ++ } ++ const auto item = queue_.front(); ++ queue_.pop(); ++ return item; ++ } ++ ++ void push(T &&item) { ++ std::unique_lock mlock(mutex_); ++ queue_.push(std::move(item)); ++ mlock.unlock(); ++ cond_.notify_one(); ++ } ++ ++ bool empty() const { ++ std::unique_lock mlock(mutex_); ++ const auto res = queue_.empty(); ++ mlock.unlock(); ++ cond_.notify_one(); ++ return res; ++ } ++ ++ private: ++ std::queue queue_; ++ mutable std::mutex mutex_; ++ mutable std::condition_variable cond_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/UIScheduler.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/UIScheduler.h +new file mode 100644 +index 0000000..8b9aca9 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/UIScheduler.h +@@ -0,0 +1,22 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace worklets { ++ ++class UIScheduler { ++ public: ++ virtual void scheduleOnUI(std::function job); ++ virtual void triggerUI(); ++ virtual ~UIScheduler() = default; ++ ++ protected: ++ std::atomic scheduledOnUI_{false}; ++ ThreadSafeQueue> uiJobs_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/WorkletEventHandler.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/WorkletEventHandler.h +new file mode 100644 +index 0000000..4eac297 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/Tools/WorkletEventHandler.h +@@ -0,0 +1,41 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletEventHandler { ++ const uint64_t handlerId_; ++ const uint64_t emitterReactTag_; ++ const std::string eventName_; ++ const std::shared_ptr handlerFunction_; ++ ++ public: ++ WorkletEventHandler( ++ const uint64_t handlerId, ++ const std::string &eventName, ++ const uint64_t emitterReactTag, ++ const std::shared_ptr &handlerFunction) ++ : handlerId_(handlerId), ++ emitterReactTag_(emitterReactTag), ++ eventName_(eventName), ++ handlerFunction_(handlerFunction) {} ++ void process( ++ const std::shared_ptr &workletRuntime, ++ double eventTimestamp, ++ const jsi::Value &eventValue) const; ++ uint64_t getHandlerId() const; ++ const std::string &getEventName() const; ++ uint64_t getEmitterReactTag() const; ++ bool shouldIgnoreEmitterReactTag() const; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/ReanimatedHermesRuntime.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/ReanimatedHermesRuntime.h +new file mode 100644 +index 0000000..8d3e9f4 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/ReanimatedHermesRuntime.h +@@ -0,0 +1,147 @@ ++#pragma once ++ ++// JS_RUNTIME_HERMES is only set on Android so we have to check __has_include ++// on iOS. ++#if __APPLE__ && \ ++ (__has_include( \ ++ ) || __has_include()) ++#define JS_RUNTIME_HERMES 1 ++#endif ++ ++// Only include this file in Hermes-enabled builds as some platforms (like tvOS) ++// don't support hermes and it causes the compilation to fail. ++#if JS_RUNTIME_HERMES ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++#if __has_include() ++#include ++#else // __has_include() || ANDROID ++#include ++#endif ++ ++#if HERMES_ENABLE_DEBUGGER ++#if REACT_NATIVE_MINOR_VERSION >= 73 ++#include ++#else ++#include ++#include ++#endif ++#endif // HERMES_ENABLE_DEBUGGER ++ ++namespace worklets { ++ ++using namespace facebook; ++using namespace react; ++#if HERMES_ENABLE_DEBUGGER ++#if REACT_NATIVE_MINOR_VERSION >= 73 ++using namespace facebook::hermes::inspector_modern; ++#else ++using namespace facebook::hermes::inspector; ++#endif ++#endif // HERMES_ENABLE_DEBUGGER ++ ++// ReentrancyCheck is copied from React Native ++// from ReactCommon/hermes/executor/HermesExecutorFactory.cpp ++// https://github.com/facebook/react-native/blob/main/packages/react-native/ReactCommon/hermes/executor/HermesExecutorFactory.cpp ++struct ReanimatedReentrancyCheck { ++ // This is effectively a very subtle and complex assert, so only ++ // include it in builds which would include asserts. ++#ifndef NDEBUG ++ ReanimatedReentrancyCheck() : tid(std::thread::id()), depth(0) {} ++ ++ void before() { ++ std::thread::id this_id = std::this_thread::get_id(); ++ std::thread::id expected = std::thread::id(); ++ ++ // A note on memory ordering: the main purpose of these checks is ++ // to observe a before/before race, without an intervening after. ++ // This will be detected by the compare_exchange_strong atomicity ++ // properties, regardless of memory order. ++ // ++ // For everything else, it is easiest to think of 'depth' as a ++ // proxy for any access made inside the VM. If access to depth ++ // are reordered incorrectly, the same could be true of any other ++ // operation made by the VM. In fact, using acquire/release ++ // memory ordering could create barriers which mask a programmer ++ // error. So, we use relaxed memory order, to avoid masking ++ // actual ordering errors. Although, in practice, ordering errors ++ // of this sort would be surprising, because the decorator would ++ // need to call after() without before(). ++ ++ if (tid.compare_exchange_strong( ++ expected, this_id, std::memory_order_relaxed)) { ++ // Returns true if tid and expected were the same. If they ++ // were, then the stored tid referred to no thread, and we ++ // atomically saved this thread's tid. Now increment depth. ++ assert(depth == 0 && "[Reanimated] No thread id, but depth != 0"); ++ ++depth; ++ } else if (expected == this_id) { ++ // If the stored tid referred to a thread, expected was set to ++ // that value. If that value is this thread's tid, that's ok, ++ // just increment depth again. ++ assert(depth != 0 && "[Reanimated] Thread id was set, but depth == 0"); ++ ++depth; ++ } else { ++ // The stored tid was some other thread. This indicates a bad ++ // programmer error, where VM methods were called on two ++ // different threads unsafely. Fail fast (and hard) so the ++ // crash can be analyzed. ++ __builtin_trap(); ++ } ++ } ++ ++ void after() { ++ assert( ++ tid.load(std::memory_order_relaxed) == std::this_thread::get_id() && ++ "[Reanimated] No thread id in after()"); ++ if (--depth == 0) { ++ // If we decremented depth to zero, store no-thread into tid. ++ std::thread::id expected = std::this_thread::get_id(); ++ bool didWrite = tid.compare_exchange_strong( ++ expected, std::thread::id(), std::memory_order_relaxed); ++ assert(didWrite && "[Reanimated] Decremented to zero, but no tid write"); ++ } ++ } ++ ++ std::atomic tid; ++ // This is not atomic, as it is only written or read from the owning ++ // thread. ++ unsigned int depth; ++#endif // NDEBUG ++}; ++ ++// This is in fact a subclass of jsi::Runtime! WithRuntimeDecorator is a ++// template class that is a subclass of DecoratedRuntime which is also a ++// template class that then inherits its template, which in this case is ++// jsi::Runtime. So the inheritance is: ReanimatedHermesRuntime -> ++// WithRuntimeDecorator -> DecoratedRuntime -> jsi::Runtime You can find out ++// more about this in ReactCommon/jsi/jsi/Decorator.h or by following this link: ++// https://github.com/facebook/react-native/blob/main/packages/react-native/ReactCommon/jsi/jsi/decorator.h ++class ReanimatedHermesRuntime ++ : public jsi::WithRuntimeDecorator { ++ public: ++ ReanimatedHermesRuntime( ++ std::unique_ptr runtime, ++ const std::shared_ptr &jsQueue, ++ const std::string &name); ++ ~ReanimatedHermesRuntime(); ++ ++ private: ++ std::unique_ptr runtime_; ++ ReanimatedReentrancyCheck reentrancyCheck_; ++#if HERMES_ENABLE_DEBUGGER ++ chrome::DebugSessionToken debugToken_; ++#endif // HERMES_ENABLE_DEBUGGER ++}; ++ ++} // namespace worklets ++ ++#endif // JS_RUNTIME_HERMES +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/ReanimatedRuntime.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/ReanimatedRuntime.h +new file mode 100644 +index 0000000..77a8b51 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/ReanimatedRuntime.h +@@ -0,0 +1,30 @@ ++#pragma once ++ ++// JS_RUNTIME_HERMES is only set on Android so we have to check __has_include ++// on iOS. ++#if __APPLE__ && \ ++ (__has_include( \ ++ ) || __has_include()) ++#define JS_RUNTIME_HERMES 1 ++#endif ++ ++#include ++#include ++ ++#include ++#include ++ ++namespace worklets { ++ ++using namespace facebook; ++using namespace react; ++ ++class ReanimatedRuntime { ++ public: ++ static std::shared_ptr make( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsQueue, ++ const std::string &name); ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntime.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntime.h +new file mode 100644 +index 0000000..f904d05 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntime.h +@@ -0,0 +1,84 @@ ++#pragma once ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++using namespace facebook; ++using namespace react; ++ ++namespace worklets { ++ ++class WorkletRuntime : public jsi::HostObject, ++ public std::enable_shared_from_this { ++ public: ++ explicit WorkletRuntime( ++ jsi::Runtime &rnRuntime, ++ const std::shared_ptr &jsQueue, ++ const std::shared_ptr &jsScheduler, ++ const std::string &name, ++ const bool supportsLocking, ++ const std::string &valueUnpackerCode); ++ ++ jsi::Runtime &getJSIRuntime() const { ++ return *runtime_; ++ } ++ ++ template ++ inline jsi::Value runGuarded( ++ const std::shared_ptr &shareableWorklet, ++ Args &&...args) const { ++ jsi::Runtime &rt = *runtime_; ++ return runOnRuntimeGuarded( ++ rt, shareableWorklet->toJSValue(rt), std::forward(args)...); ++ } ++ ++ void runAsyncGuarded( ++ const std::shared_ptr &shareableWorklet) { ++ if (queue_ == nullptr) { ++ queue_ = std::make_shared(name_); ++ } ++ queue_->push( ++ [=, self = shared_from_this()] { self->runGuarded(shareableWorklet); }); ++ } ++ ++ jsi::Value executeSync(jsi::Runtime &rt, const jsi::Value &worklet) const; ++ ++ std::string toString() const { ++ return "[WorkletRuntime \"" + name_ + "\"]"; ++ } ++ ++ jsi::Value get(jsi::Runtime &rt, const jsi::PropNameID &propName) override; ++ ++ std::vector getPropertyNames(jsi::Runtime &rt) override; ++ ++ private: ++ const std::shared_ptr runtimeMutex_; ++ const std::shared_ptr runtime_; ++#ifndef NDEBUG ++ const bool supportsLocking_; ++#endif ++ const std::string name_; ++ std::shared_ptr queue_; ++}; ++ ++// This function needs to be non-inline to avoid problems with dynamic_cast on ++// Android ++std::shared_ptr extractWorkletRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &value); ++ ++void scheduleOnRuntime( ++ jsi::Runtime &rt, ++ const jsi::Value &workletRuntimeValue, ++ const jsi::Value &shareableWorkletValue); ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntimeCollector.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntimeCollector.h +new file mode 100644 +index 0000000..09c7091 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntimeCollector.h +@@ -0,0 +1,36 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++ ++namespace worklets { ++ ++class WorkletRuntimeCollector : public jsi::HostObject { ++ // When worklet runtime is created, we inject an instance of this class as a ++ // `jsi::HostObject` into the global object. When worklet runtime is ++ // terminated, the object is garbage-collected, which runs the C++ destructor. ++ // In the destructor, we unregister the worklet runtime from the registry. ++ ++ public: ++ explicit WorkletRuntimeCollector(jsi::Runtime &runtime) : runtime_(runtime) { ++ WorkletRuntimeRegistry::registerRuntime(runtime_); ++ } ++ ++ ~WorkletRuntimeCollector() { ++ WorkletRuntimeRegistry::unregisterRuntime(runtime_); ++ } ++ ++ static void install(jsi::Runtime &rt) { ++ auto collector = std::make_shared(rt); ++ auto object = jsi::Object::createFromHostObject(rt, collector); ++ rt.global().setProperty(rt, "__workletRuntimeCollector", object); ++ } ++ ++ private: ++ jsi::Runtime &runtime_; ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntimeDecorator.h b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntimeDecorator.h +new file mode 100644 +index 0000000..c3b22d8 +--- /dev/null ++++ b/node_modules/react-native-reanimated/android/build/prefab-headers/worklets/worklets/WorkletRuntime/WorkletRuntimeDecorator.h +@@ -0,0 +1,22 @@ ++#pragma once ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++using namespace facebook; ++ ++namespace worklets { ++ ++class WorkletRuntimeDecorator { ++ public: ++ static void decorate( ++ jsi::Runtime &rt, ++ const std::string &name, ++ const std::shared_ptr &jsScheduler); ++}; ++ ++} // namespace worklets +diff --git a/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..6e765da +Binary files /dev/null and b/node_modules/react-native-reanimated/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ diff --git a/packages/react-native-room-kit/example/patches/react-native-screens+4.18.0.patch b/packages/react-native-room-kit/example/patches/react-native-screens+4.18.0.patch new file mode 100644 index 000000000..b58f7be36 --- /dev/null +++ b/packages/react-native-room-kit/example/patches/react-native-screens+4.18.0.patch @@ -0,0 +1,40879 @@ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/cache-v2-4e9399ad6061b225641d.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/cache-v2-4e9399ad6061b225641d.json +new file mode 100644 +index 0000000..9678ada +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/cache-v2-4e9399ad6061b225641d.json +@@ -0,0 +1,1415 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "rnscreens" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "RNS_NEW_ARCH_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "rnscreens_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a" ++ }, ++ { ++ "name" : "rnscreens_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "rnscreens_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::jsi;general;android;" ++ }, ++ { ++ "name" : "rnscreens_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-4773e75e0fb221aef3cc.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-4773e75e0fb221aef3cc.json +new file mode 100644 +index 0000000..ac8cfc9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-4773e75e0fb221aef3cc.json +@@ -0,0 +1,809 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-551ba927dd3d18f6defa.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-551ba927dd3d18f6defa.json +new file mode 100644 +index 0000000..b90c0b9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-551ba927dd3d18f6defa.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.10.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "rnscreens", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-rnscreens-Debug-829cd205d406cc3f5484.json", ++ "name" : "rnscreens", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-06-20-0903.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-06-20-0903.json +new file mode 100644 +index 0000000..daa7a94 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-06-20-0903.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-551ba927dd3d18f6defa.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-4e9399ad6061b225641d.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-4773e75e0fb221aef3cc.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-4e9399ad6061b225641d.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-4773e75e0fb221aef3cc.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-551ba927dd3d18f6defa.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-829cd205d406cc3f5484.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-829cd205d406cc3f5484.json +new file mode 100644 +index 0000000..fd8d54e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-829cd205d406cc3f5484.json +@@ -0,0 +1,178 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "target_compile_definitions", ++ "include_directories", ++ "set_target_properties" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 76, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 33, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "fragment" : "-std=c++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 3, ++ "define" : "FOLLY_NO_CONFIG=1" ++ }, ++ { ++ "define" : "rnscreens_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 5 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "rnscreens", ++ "nameOnDisk" : "librnscreens.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/jni-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.ninja_deps b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.ninja_deps +new file mode 100644 +index 0000000..4b43ed6 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.ninja_deps differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.ninja_log b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.ninja_log +new file mode 100644 +index 0000000..89f104b +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/.ninja_log +@@ -0,0 +1,8 @@ ++# ninja log v5 ++0 3816 1761325584737689700 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o f208c9751f9aca03 ++0 4067 1761325584989245611 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 44299724a3c0ad55 ++4067 4149 1761325585069215600 ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so 17e8f5a563d53331 ++0 34 0 clean 2f14cdef7ad3f183 ++15 1631 1761326462571894097 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o f208c9751f9aca03 ++15 1643 1761326462587527723 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 44299724a3c0ad55 ++1643 1735 1761326462680442454 ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so 17e8f5a563d53331 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeCache.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeCache.txt +new file mode 100644 +index 0000000..fc35b2b +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeCache.txt +@@ -0,0 +1,413 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=rnscreens ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++RNS_NEW_ARCH_ENABLED:UNINITIALIZED=false ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++rnscreens_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++ ++//Value Computed by CMake ++rnscreens_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++rnscreens_LIB_DEPENDS:STATIC=general;ReactAndroid::jsi;general;android; ++ ++//Value Computed by CMake ++rnscreens_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..27c0d0f +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "19.0.0") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..bce196a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "19.0.0") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..f75522c +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..ea49254 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..f708ae4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "aarch64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..8714677 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..6b94aea +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..f6128d2 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,264 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5cfcb && [1/2] Building C object CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +v8a -target-feature +fp-armv8 -target-feature +neon -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_5cfcb ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_5cfcb /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5cfcb && [1/2] Building C object CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +v8a -target-feature +fp-armv8 -target-feature +neon -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_5cfcb] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_5cfcb /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_5cfcb] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_5cfcb.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_eccf2 && [1/2] Building CXX object CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +v8a -target-feature +fp-armv8 -target-feature +neon -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_eccf2 ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_eccf2 /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_eccf2 && [1/2] Building CXX object CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +v8a -target-feature +fp-armv8 -target-feature +neon -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_eccf2] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_eccf2 /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_eccf2] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_eccf2.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..35924e7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rnscreens.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o +new file mode 100644 +index 0000000..d487583 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o +new file mode 100644 +index 0000000..e6bf0cd +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..66cff53 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__rnscreens_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/additional_project_files.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..2a60996 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,42 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "rnscreens", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..a239e83 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,31 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "artifactName": "rnscreens", ++ "abi": "arm64-v8a", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build.ninja b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..f3131e7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build.ninja +@@ -0,0 +1,166 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Order-only phony target for rnscreens ++ ++build cmake_object_order_depends_target_rnscreens: phony || CMakeFiles/rnscreens.dir ++ ++build CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.pdb ++ ++build CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so ++ ++build ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so: CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments ++ LINK_LIBRARIES = /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so -landroid -latomic -lm ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = librnscreens.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build librnscreens.so: phony ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so ++ ++build rnscreens: phony ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a/librnscreens.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build_file_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..8d28065 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build_file_index.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/cmake_install.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..7af62eb +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..007f9b0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..6c2a633 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..22ddf14 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,32 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  3  섾3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build.json  3 섾3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/android_gradle_build_mini.json  3 턾3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build.ninja  3 ᄾ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build.ninja.txt  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/build_file_index.txt  3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json  3 ᄾ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/compile_commands.json.bin  3  ᄾ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/metadata_generation_command.txt  3 ++ 턾3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/prefab_config.json  3  턾3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/symbol_folder_index.txt  3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake  3  꽹3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  3 꽹3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt  3 3 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..9c4e52b +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,22 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=arm64-v8a ++-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/prefab_config.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..61cbcc7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/hash_key.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/hash_key.txt +new file mode 100644 +index 0000000..f236821 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/hash_key.txt +@@ -0,0 +1,29 @@ ++# Values used to calculate the hash in this folder name. ++# Should not depend on the absolute path of the project itself. ++# - AGP: 8.7.2. ++# - $NDK is the path to NDK 28.1.13356709. ++# - $PROJECT is the path to the parent folder of the root Gradle build file. ++# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. ++# - $HASH is the hash value computed from this text. ++# - $CMAKE is the path to CMake 3.22.1. ++# - $NINJA is the path to Ninja. ++-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ef54dbf +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.arm64-v8a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..bf3d9fa +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ebd75a4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.x86_64/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..cb56213 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/cache-v2-fed46d38ef9ae0cd22ad.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/cache-v2-fed46d38ef9ae0cd22ad.json +new file mode 100644 +index 0000000..42920f7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/cache-v2-fed46d38ef9ae0cd22ad.json +@@ -0,0 +1,1415 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "rnscreens" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "RNS_NEW_ARCH_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "rnscreens_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64" ++ }, ++ { ++ "name" : "rnscreens_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "rnscreens_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::jsi;general;android;" ++ }, ++ { ++ "name" : "rnscreens_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-44d5efefa181d4584cf3.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-44d5efefa181d4584cf3.json +new file mode 100644 +index 0000000..54d180e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-44d5efefa181d4584cf3.json +@@ -0,0 +1,809 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/codemodel-v2-4940ef4b153e509d3bad.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/codemodel-v2-4940ef4b153e509d3bad.json +new file mode 100644 +index 0000000..6eaee83 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/codemodel-v2-4940ef4b153e509d3bad.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.10.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "rnscreens", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-rnscreens-Debug-2f091738c4cee2fbfcbb.json", ++ "name" : "rnscreens", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-06-26-0336.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-06-26-0336.json +new file mode 100644 +index 0000000..1821e63 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-06-26-0336.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-4940ef4b153e509d3bad.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-fed46d38ef9ae0cd22ad.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-44d5efefa181d4584cf3.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-fed46d38ef9ae0cd22ad.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-44d5efefa181d4584cf3.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-4940ef4b153e509d3bad.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-2f091738c4cee2fbfcbb.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-2f091738c4cee2fbfcbb.json +new file mode 100644 +index 0000000..63b9b7d +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-2f091738c4cee2fbfcbb.json +@@ -0,0 +1,178 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "target_compile_definitions", ++ "include_directories", ++ "set_target_properties" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 76, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 33, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "fragment" : "-std=c++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 3, ++ "define" : "FOLLY_NO_CONFIG=1" ++ }, ++ { ++ "define" : "rnscreens_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 5 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "rnscreens", ++ "nameOnDisk" : "librnscreens.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/jni-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.ninja_deps b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.ninja_deps +new file mode 100644 +index 0000000..eb46edb +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.ninja_deps differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.ninja_log b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.ninja_log +new file mode 100644 +index 0000000..4a75b08 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/.ninja_log +@@ -0,0 +1,8 @@ ++# ninja log v5 ++1 2077 1761325588448215277 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 36b705fab2ffe9c1 ++0 2129 1761325588491313887 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 1a0b647c2998e678 ++2129 2199 1761325588569214160 ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so 1f97abd57c2d0237 ++0 17 0 clean 2f14cdef7ad3f183 ++3 3414 1761326466104844056 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 1a0b647c2998e678 ++3 3946 1761326466635233426 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 36b705fab2ffe9c1 ++3946 4149 1761326466848746627 ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so 1f97abd57c2d0237 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeCache.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeCache.txt +new file mode 100644 +index 0000000..ce505f4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeCache.txt +@@ -0,0 +1,413 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=rnscreens ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64 ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++RNS_NEW_ARCH_ENABLED:UNINITIALIZED=false ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++rnscreens_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++ ++//Value Computed by CMake ++rnscreens_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++rnscreens_LIB_DEPENDS:STATIC=general;ReactAndroid::jsi;general;android; ++ ++//Value Computed by CMake ++rnscreens_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..5794c5a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "19.0.0") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..a9a0e8c +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "19.0.0") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..c331b59 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..b6608f6 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..ba923dd +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "x86_64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..9c3165c +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..5a6ba85 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..a0a35b8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,260 @@ ++The target system is: Android - 1 - x86_64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_3f56c && [1/2] Building C object CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_3f56c ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_3f56c /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_3f56c && [1/2] Building C object CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_3f56c] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_3f56c /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_3f56c] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_3f56c.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_30d9e && [1/2] Building CXX object CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_30d9e ++Android (13324770, +pgo, -bolt, +lto, -mlgo, based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_30d9e /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_30d9e && [1/2] Building CXX object CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19 -dependency-file CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 19.0.0 based upon LLVM 19.0.0 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_30d9e] ++ ignore line: [Android (13324770 +pgo -bolt +lto -mlgo based on r530567d) clang version 19.0.0 (https://android.googlesource.com/toolchain/llvm-project 97a699bf4812a18fb657c2779f5296a4ab2694d2)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro -z max-page-size=16384 --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_30d9e /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_30d9e] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_30d9e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/19/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..1411341 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rnscreens.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o +new file mode 100644 +index 0000000..394a790 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o +new file mode 100644 +index 0000000..9a73bb3 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..5055464 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__rnscreens_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/additional_project_files.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build.json +new file mode 100644 +index 0000000..cdd724f +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build.json +@@ -0,0 +1,42 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "rnscreens", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build_mini.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build_mini.json +new file mode 100644 +index 0000000..e708dcf +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build_mini.json +@@ -0,0 +1,31 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "artifactName": "rnscreens", ++ "abi": "x86_64", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build.ninja b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build.ninja +new file mode 100644 +index 0000000..20586af +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build.ninja +@@ -0,0 +1,166 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Order-only phony target for rnscreens ++ ++build cmake_object_order_depends_target_rnscreens: phony || CMakeFiles/rnscreens.dir ++ ++build CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.pdb ++ ++build CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so ++ ++build ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so: CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments ++ LINK_LIBRARIES = /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so -landroid -latomic -lm ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = librnscreens.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build librnscreens.so: phony ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so ++ ++build rnscreens: phony ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64/librnscreens.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build_file_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build_file_index.txt +new file mode 100644 +index 0000000..a7e4ef4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build_file_index.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/cmake_install.cmake b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/cmake_install.cmake +new file mode 100644 +index 0000000..a8d1242 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json +new file mode 100644 +index 0000000..43daab2 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json.bin +new file mode 100644 +index 0000000..a21907e +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/configure_fingerprint.bin b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/configure_fingerprint.bin +new file mode 100644 +index 0000000..1d10b9b +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/configure_fingerprint.bin +@@ -0,0 +1,32 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmakeC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/additional_project_files.txt  3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build.json  3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/android_gradle_build_mini.json  3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build.ninja  3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build.ninja.txt  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/build_file_index.txt  3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json  3 ++ 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/compile_commands.json.bin  3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/metadata_generation_command.txt  3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/prefab_config.json  3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/symbol_folder_index.txt  3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt  3 3 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/metadata_generation_command.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/metadata_generation_command.txt +new file mode 100644 +index 0000000..eca401c +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/metadata_generation_command.txt +@@ -0,0 +1,22 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=x86_64 ++-DCMAKE_ANDROID_ARCH_ABI=x86_64 ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/28.1.13356709/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/prefab/x86_64/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64 ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/prefab_config.json b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/symbol_folder_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/symbol_folder_index.txt +new file mode 100644 +index 0000000..70207c6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/1e2s1s4z/x86_64/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/1e2s1s4z/obj/x86_64 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/cache-v2-f0078f056e4a6c0a1af4.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/cache-v2-f0078f056e4a6c0a1af4.json +new file mode 100644 +index 0000000..00e3974 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/cache-v2-f0078f056e4a6c0a1af4.json +@@ -0,0 +1,1415 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "rnscreens" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Wl,-z,max-page-size=16384" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "RNS_NEW_ARCH_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "rnscreens_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a" ++ }, ++ { ++ "name" : "rnscreens_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "rnscreens_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::jsi;general;android;" ++ }, ++ { ++ "name" : "rnscreens_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-1a430997b3648d32db1c.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-1a430997b3648d32db1c.json +new file mode 100644 +index 0000000..01dbdce +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-1a430997b3648d32db1c.json +@@ -0,0 +1,809 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-0faeccf5b6c50e09b218.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-0faeccf5b6c50e09b218.json +new file mode 100644 +index 0000000..d9c6d48 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-0faeccf5b6c50e09b218.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.6.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "rnscreens", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-rnscreens-Debug-22074aad6ec242180565.json", ++ "name" : "rnscreens", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-11-0984.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-11-0984.json +new file mode 100644 +index 0000000..1d48369 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-11-0984.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-0faeccf5b6c50e09b218.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-f0078f056e4a6c0a1af4.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-1a430997b3648d32db1c.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-f0078f056e4a6c0a1af4.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-1a430997b3648d32db1c.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-0faeccf5b6c50e09b218.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-22074aad6ec242180565.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-22074aad6ec242180565.json +new file mode 100644 +index 0000000..a226fa2 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-22074aad6ec242180565.json +@@ -0,0 +1,178 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "target_compile_definitions", ++ "include_directories", ++ "set_target_properties" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 76, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 33, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "fragment" : "-std=c++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 3, ++ "define" : "FOLLY_NO_CONFIG=1" ++ }, ++ { ++ "define" : "rnscreens_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 5 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "rnscreens", ++ "nameOnDisk" : "librnscreens.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/jni-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.ninja_deps b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.ninja_deps +new file mode 100644 +index 0000000..74eb2b1 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.ninja_deps differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.ninja_log b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.ninja_log +new file mode 100644 +index 0000000..bf76a8e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/.ninja_log +@@ -0,0 +1,4 @@ ++# ninja log v5 ++0 4197 1761328156275755526 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++1 4252 1761328156302401734 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++4252 4320 1761328156399224582 ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so fa3303f0b52f78bc +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeCache.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeCache.txt +new file mode 100644 +index 0000000..82d6224 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeCache.txt +@@ -0,0 +1,413 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=rnscreens ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-z,max-page-size=16384 ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++RNS_NEW_ARCH_ENABLED:UNINITIALIZED=false ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++rnscreens_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++ ++//Value Computed by CMake ++rnscreens_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++rnscreens_LIB_DEPENDS:STATIC=general;ReactAndroid::jsi;general;android; ++ ++//Value Computed by CMake ++rnscreens_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..371cbf0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..ede016e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..fa958c5 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..c49ae88 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..e6fd81c +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "aarch64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..5432fff +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..c866e86 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..f53db26 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,264 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_2c04f && [1/2] Building C object CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_2c04f ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_2c04f /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_2c04f && [1/2] Building C object CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_2c04f] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_2c04f /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_2c04f] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_2c04f.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_ffe70 && [1/2] Building CXX object CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_ffe70 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_ffe70 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_ffe70 && [1/2] Building CXX object CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_ffe70] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_ffe70 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_ffe70] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_ffe70.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..45b511a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rnscreens.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o +new file mode 100644 +index 0000000..73cfc0d +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o +new file mode 100644 +index 0000000..e028331 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..2390b2b +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__rnscreens_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/additional_project_files.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..d66eae2 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,42 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "rnscreens", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..faba3a7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,31 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "artifactName": "rnscreens", ++ "abi": "arm64-v8a", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build.ninja b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..4b28db7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build.ninja +@@ -0,0 +1,166 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Order-only phony target for rnscreens ++ ++build cmake_object_order_depends_target_rnscreens: phony || CMakeFiles/rnscreens.dir ++ ++build CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.pdb ++ ++build CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so ++ ++build ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so: CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so -landroid -latomic -lm ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = librnscreens.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build librnscreens.so: phony ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so ++ ++build rnscreens: phony ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build_file_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..e2b19f6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build_file_index.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/cmake_install.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..1599ad8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..e4b1253 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..0d5d1d7 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..49bd979 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,28 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build.json  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build_mini.json  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build.ninja  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build.ninja.txt  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/build_file_index.txt  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json.bin  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/metadata_generation_command.txt  ں3 ++ ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/prefab_config.json  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/symbol_folder_index.txt  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt  ں3  3 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..62abd6e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,23 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=arm64-v8a ++-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/prefab_config.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..fcd04ec +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/hash_key.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/hash_key.txt +new file mode 100644 +index 0000000..64b1ac3 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/hash_key.txt +@@ -0,0 +1,30 @@ ++# Values used to calculate the hash in this folder name. ++# Should not depend on the absolute path of the project itself. ++# - AGP: 8.7.2. ++# - $NDK is the path to NDK 27.1.12297006. ++# - $PROJECT is the path to the parent folder of the root Gradle build file. ++# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. ++# - $HASH is the hash value computed from this text. ++# - $CMAKE is the path to CMake 3.22.1. ++# - $NINJA is the path to Ninja. ++-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ef54dbf +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.arm64-v8a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..bf3d9fa +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ebd75a4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.x86_64/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..cb56213 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/cache-v2-916c66d021f3ebf81ecc.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/cache-v2-916c66d021f3ebf81ecc.json +new file mode 100644 +index 0000000..a5a1f49 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/cache-v2-916c66d021f3ebf81ecc.json +@@ -0,0 +1,1415 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "rnscreens" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Wl,-z,max-page-size=16384" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "RNS_NEW_ARCH_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "rnscreens_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64" ++ }, ++ { ++ "name" : "rnscreens_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "rnscreens_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::jsi;general;android;" ++ }, ++ { ++ "name" : "rnscreens_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-9744d50a7cd9693e10f1.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-9744d50a7cd9693e10f1.json +new file mode 100644 +index 0000000..c3ebbfa +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-9744d50a7cd9693e10f1.json +@@ -0,0 +1,809 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/codemodel-v2-bb1c16cba92439ed708a.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/codemodel-v2-bb1c16cba92439ed708a.json +new file mode 100644 +index 0000000..92c2cc8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/codemodel-v2-bb1c16cba92439ed708a.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.6.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "rnscreens", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-rnscreens-Debug-db47bef3907b96d0081d.json", ++ "name" : "rnscreens", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-17-0897.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-17-0897.json +new file mode 100644 +index 0000000..ff934d8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-17-0897.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-bb1c16cba92439ed708a.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-916c66d021f3ebf81ecc.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-9744d50a7cd9693e10f1.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-916c66d021f3ebf81ecc.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-9744d50a7cd9693e10f1.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-bb1c16cba92439ed708a.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-db47bef3907b96d0081d.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-db47bef3907b96d0081d.json +new file mode 100644 +index 0000000..c360eef +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-db47bef3907b96d0081d.json +@@ -0,0 +1,178 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "target_compile_definitions", ++ "include_directories", ++ "set_target_properties" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 76, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 33, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "fragment" : "-std=c++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 3, ++ "define" : "FOLLY_NO_CONFIG=1" ++ }, ++ { ++ "define" : "rnscreens_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 5 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "rnscreens", ++ "nameOnDisk" : "librnscreens.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/jni-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.ninja_deps b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.ninja_deps +new file mode 100644 +index 0000000..e9b7ca3 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.ninja_deps differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.ninja_log b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.ninja_log +new file mode 100644 +index 0000000..ebddb9d +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/.ninja_log +@@ -0,0 +1,4 @@ ++# ninja log v5 ++0 1627 1761328159558569610 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++0 2194 1761328160125523140 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++2194 2269 1761328160200082695 ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so 57c54c0eb083b5ad +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeCache.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeCache.txt +new file mode 100644 +index 0000000..dae4e02 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeCache.txt +@@ -0,0 +1,413 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=rnscreens ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-z,max-page-size=16384 ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++RNS_NEW_ARCH_ENABLED:UNINITIALIZED=false ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++rnscreens_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++ ++//Value Computed by CMake ++rnscreens_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++rnscreens_LIB_DEPENDS:STATIC=general;ReactAndroid::jsi;general;android; ++ ++//Value Computed by CMake ++rnscreens_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..7cc57c9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..f17c25f +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..a49d6dc +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..a971b59 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..a9adbbb +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "x86_64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..bb25994 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..c63e7f3 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..8f97fee +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,258 @@ ++The target system is: Android - 1 - x86_64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_23b5c && [1/2] Building C object CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_23b5c ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_23b5c /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_23b5c && [1/2] Building C object CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_23b5c] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_23b5c /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_23b5c] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_23b5c.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_a0dd7 && [1/2] Building CXX object CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_a0dd7 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_a0dd7 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_a0dd7 && [1/2] Building CXX object CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_a0dd7] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_a0dd7 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_a0dd7] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_a0dd7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..e4d33d0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rnscreens.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o +new file mode 100644 +index 0000000..c75657e +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o +new file mode 100644 +index 0000000..ee4a835 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..fd9e575 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__rnscreens_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/additional_project_files.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build.json +new file mode 100644 +index 0000000..d15a825 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build.json +@@ -0,0 +1,42 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "rnscreens", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build_mini.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build_mini.json +new file mode 100644 +index 0000000..5545b9b +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build_mini.json +@@ -0,0 +1,31 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "artifactName": "rnscreens", ++ "abi": "x86_64", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build.ninja b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build.ninja +new file mode 100644 +index 0000000..22013d6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build.ninja +@@ -0,0 +1,166 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Order-only phony target for rnscreens ++ ++build cmake_object_order_depends_target_rnscreens: phony || CMakeFiles/rnscreens.dir ++ ++build CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.pdb ++ ++build CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so ++ ++build ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so: CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so -landroid -latomic -lm ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = librnscreens.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build librnscreens.so: phony ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so ++ ++build rnscreens: phony ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build_file_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build_file_index.txt +new file mode 100644 +index 0000000..25153df +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build_file_index.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/cmake_install.cmake b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/cmake_install.cmake +new file mode 100644 +index 0000000..6c002de +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json +new file mode 100644 +index 0000000..cd692c9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json.bin +new file mode 100644 +index 0000000..c690eeb +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/configure_fingerprint.bin b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/configure_fingerprint.bin +new file mode 100644 +index 0000000..16d1708 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/configure_fingerprint.bin +@@ -0,0 +1,28 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ۩ۺ3  ԩۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build.json  ܩۺ3 שۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build_mini.json  ܩۺ3 ٩ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build.ninja  ܩۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build.ninja.txt  ܩۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/build_file_index.txt  ܩۺ3 کۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json  ܩۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json.bin  ܩۺ3  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/metadata_generation_command.txt  ܩۺ3 ++ کۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/prefab_config.json  ܩۺ3  کۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/symbol_folder_index.txt  ܩۺ3  کۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt  ܩۺ3  3 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/metadata_generation_command.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/metadata_generation_command.txt +new file mode 100644 +index 0000000..431b0c6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/metadata_generation_command.txt +@@ -0,0 +1,23 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=x86_64 ++-DCMAKE_ANDROID_ARCH_ABI=x86_64 ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/prefab_config.json b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/symbol_folder_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/symbol_folder_index.txt +new file mode 100644 +index 0000000..9e2e3f2 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/cache-v2-6cc8575c8c95b7b5d067.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/cache-v2-6cc8575c8c95b7b5d067.json +new file mode 100644 +index 0000000..a1fc5bb +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/cache-v2-6cc8575c8c95b7b5d067.json +@@ -0,0 +1,1415 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "rnscreens" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "RNS_NEW_ARCH_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "rnscreens_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a" ++ }, ++ { ++ "name" : "rnscreens_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "rnscreens_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::jsi;general;android;" ++ }, ++ { ++ "name" : "rnscreens_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-1aa1a990390af29c59e5.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-1aa1a990390af29c59e5.json +new file mode 100644 +index 0000000..2bbe3b2 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-1aa1a990390af29c59e5.json +@@ -0,0 +1,809 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-ebad66ad36f76c6887b0.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-ebad66ad36f76c6887b0.json +new file mode 100644 +index 0000000..8a59767 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-ebad66ad36f76c6887b0.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.6.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "rnscreens", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-rnscreens-Debug-eb6b1c4b46c6589deb6d.json", ++ "name" : "rnscreens", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T13-19-40-0442.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T13-19-40-0442.json +new file mode 100644 +index 0000000..5a78c44 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T13-19-40-0442.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-ebad66ad36f76c6887b0.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-6cc8575c8c95b7b5d067.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-1aa1a990390af29c59e5.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-6cc8575c8c95b7b5d067.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-1aa1a990390af29c59e5.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-ebad66ad36f76c6887b0.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-eb6b1c4b46c6589deb6d.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-eb6b1c4b46c6589deb6d.json +new file mode 100644 +index 0000000..9595ff5 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.cmake/api/v1/reply/target-rnscreens-Debug-eb6b1c4b46c6589deb6d.json +@@ -0,0 +1,178 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "target_compile_definitions", ++ "include_directories", ++ "set_target_properties" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 76, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 33, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "fragment" : "-std=c++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 3, ++ "define" : "FOLLY_NO_CONFIG=1" ++ }, ++ { ++ "define" : "rnscreens_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 5 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "rnscreens", ++ "nameOnDisk" : "librnscreens.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/jni-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.ninja_deps b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.ninja_deps +new file mode 100644 +index 0000000..fb9e3b0 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.ninja_deps differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.ninja_log b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.ninja_log +new file mode 100644 +index 0000000..b91e13e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/.ninja_log +@@ -0,0 +1,73 @@ ++# ninja log v5 ++0 2559 1761311987998298292 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++2 2640 1761311988085341575 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++2641 2840 1761311988288171939 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 18 0 clean 2f14cdef7ad3f183 ++4 4791 1761312115807881529 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++4 5143 1761312116165220489 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++5144 5234 1761312116251078256 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 47 0 clean 2f14cdef7ad3f183 ++3 1683 1761312252379915074 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++3 1793 1761312252494288303 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++1794 1847 1761312252549472787 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 17 0 clean 2f14cdef7ad3f183 ++3 3597 1761313953853723402 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++3 3941 1761313954210984466 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++3942 3995 1761313954268012356 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 10 0 clean 2f14cdef7ad3f183 ++0 7 0 clean 2f14cdef7ad3f183 ++2 3938 1761314052953990014 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++2 5217 1761314054203058498 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++5217 5285 1761314054304744418 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 11 0 clean 2f14cdef7ad3f183 ++2 4103 1761314134395232003 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++3 4843 1761314135077553529 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++4882 5103 1761314135395621845 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 11 0 clean 2f14cdef7ad3f183 ++8 5442 1761314233963397539 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++3 5699 1761314234219565283 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++5699 5771 1761314234296195686 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 46 0 clean 2f14cdef7ad3f183 ++157 8305 1761314624709161608 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++158 9410 1761314625771291312 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++9411 9715 1761314626093896441 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 107 0 clean 2f14cdef7ad3f183 ++9 12241 1761314891675390322 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++12 12390 1761314891805774601 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++12390 12598 1761314892050590561 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++1 35 0 clean 2f14cdef7ad3f183 ++21 5101 1761315128386743592 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++31 5641 1761315128911654504 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++5641 5772 1761315129056985991 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 24 0 clean 2f14cdef7ad3f183 ++7 20173 1761315288571129594 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++11 20468 1761315288859530776 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++20468 22360 1761315290732614870 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 16 0 clean 2f14cdef7ad3f183 ++5 9818 1761315631952854577 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++3 10553 1761315632800007411 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++10553 11234 1761315633547641699 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 21 0 clean 2f14cdef7ad3f183 ++3 3940 1761323272483802607 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++3 5151 1761323273695206241 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++5151 5228 1761323273771340611 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 28 0 clean 2f14cdef7ad3f183 ++3 4468 1761323992883955239 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++4 7058 1761323995426521261 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++7058 7146 1761323995565240422 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 11 0 clean 2f14cdef7ad3f183 ++3 3843 1761324088355538566 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++4 4764 1761324089278448270 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++4764 4839 1761324089352700921 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 18 0 clean 2f14cdef7ad3f183 ++29 1966 1761326698914061271 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++28 2761 1761326699711766404 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++2761 2852 1761326699800060594 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++1 52 0 clean 2f14cdef7ad3f183 ++43 2632 1761326946814280705 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++44 2902 1761326947088003972 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++2902 2984 1761326947170321712 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf ++0 22 0 clean 2f14cdef7ad3f183 ++67 2151 1761327880669067400 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o 9fc03cdd4070c39a ++70 2909 1761327881430403731 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o a1886a363d2365b9 ++2910 2993 1761327881513489276 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so b394185819ed6ecf +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeCache.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeCache.txt +new file mode 100644 +index 0000000..4befef4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeCache.txt +@@ -0,0 +1,413 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=rnscreens ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++RNS_NEW_ARCH_ENABLED:UNINITIALIZED=false ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++rnscreens_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++ ++//Value Computed by CMake ++rnscreens_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++rnscreens_LIB_DEPENDS:STATIC=general;ReactAndroid::jsi;general;android; ++ ++//Value Computed by CMake ++rnscreens_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..371cbf0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..ede016e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..c9ac755 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..559021c +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..e6fd81c +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "aarch64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..97b042e +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..7d9a81e +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..34462e3 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,264 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_33780 && [1/2] Building C object CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_33780 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_33780 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_33780 && [1/2] Building C object CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_33780] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_33780 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_33780] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_33780.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_fda37 && [1/2] Building CXX object CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_fda37 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_fda37 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_fda37 && [1/2] Building CXX object CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_fda37] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_fda37 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_fda37] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_fda37.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..af146d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rnscreens.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o +new file mode 100644 +index 0000000..b691425 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o +new file mode 100644 +index 0000000..337e678 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..a50fd32 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__rnscreens_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/additional_project_files.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..689b03e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,42 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "rnscreens", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..8492f2f +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,31 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "artifactName": "rnscreens", ++ "abi": "arm64-v8a", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build.ninja b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..eb79f06 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build.ninja +@@ -0,0 +1,166 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Order-only phony target for rnscreens ++ ++build cmake_object_order_depends_target_rnscreens: phony || CMakeFiles/rnscreens.dir ++ ++build CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.pdb ++ ++build CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so ++ ++build ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so: CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments ++ LINK_LIBRARIES = /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so -landroid -latomic -lm ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = librnscreens.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build librnscreens.so: phony ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so ++ ++build rnscreens: phony ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a/librnscreens.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build_file_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..1f141c1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build_file_index.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/cmake_install.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..db15d5a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..30cc579 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..f8ed25f +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..91ba117 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,32 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ޢʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build.json  ޢʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/android_gradle_build_mini.json  ޢʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build.ninja  ޢʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build.ninja.txt  ޢʺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/build_file_index.txt  ޢʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json  ޢʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/compile_commands.json.bin  ޢʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/metadata_generation_command.txt  ޢʺ3 ++ 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/prefab_config.json  ޢʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/symbol_folder_index.txt  ޢʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake  ޢʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  ޢʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt  ޢʺ3 3 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..d9baf3b +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,22 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=arm64-v8a ++-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/prefab_config.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..d07ef64 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/hash_key.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/hash_key.txt +new file mode 100644 +index 0000000..de675ed +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/hash_key.txt +@@ -0,0 +1,29 @@ ++# Values used to calculate the hash in this folder name. ++# Should not depend on the absolute path of the project itself. ++# - AGP: 8.7.2. ++# - $NDK is the path to NDK 27.1.12297006. ++# - $PROJECT is the path to the parent folder of the root Gradle build file. ++# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. ++# - $HASH is the hash value computed from this text. ++# - $CMAKE is the path to CMake 3.22.1. ++# - $NINJA is the path to Ninja. ++-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ef54dbf +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.arm64-v8a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..bf3d9fa +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ebd75a4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.x86_64/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..cb56213 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/cache-v2-410eb8281f6b2ea6de04.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/cache-v2-410eb8281f6b2ea6de04.json +new file mode 100644 +index 0000000..c8045dc +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/cache-v2-410eb8281f6b2ea6de04.json +@@ -0,0 +1,1415 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "rnscreens" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "RNS_NEW_ARCH_ENABLED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "false" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "rnscreens_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64" ++ }, ++ { ++ "name" : "rnscreens_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "rnscreens_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;ReactAndroid::jsi;general;android;" ++ }, ++ { ++ "name" : "rnscreens_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-ddb178b599b228137ebb.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-ddb178b599b228137ebb.json +new file mode 100644 +index 0000000..496b8c6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-ddb178b599b228137ebb.json +@@ -0,0 +1,809 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/codemodel-v2-426d712be9423565855b.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/codemodel-v2-426d712be9423565855b.json +new file mode 100644 +index 0000000..81d9dbd +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/codemodel-v2-426d712be9423565855b.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.6.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "rnscreens", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-rnscreens-Debug-0d21ff78043f2afa1d35.json", ++ "name" : "rnscreens", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/index-2025-10-24T13-19-49-0650.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/index-2025-10-24T13-19-49-0650.json +new file mode 100644 +index 0000000..5cb2d39 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/index-2025-10-24T13-19-49-0650.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-426d712be9423565855b.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-410eb8281f6b2ea6de04.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-ddb178b599b228137ebb.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-410eb8281f6b2ea6de04.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-ddb178b599b228137ebb.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-426d712be9423565855b.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-0d21ff78043f2afa1d35.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-0d21ff78043f2afa1d35.json +new file mode 100644 +index 0000000..f22cffd +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.cmake/api/v1/reply/target-rnscreens-Debug-0d21ff78043f2afa1d35.json +@@ -0,0 +1,178 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "target_compile_definitions", ++ "include_directories", ++ "set_target_properties" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 76, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 33, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 22, ++ "parent" : 0 ++ }, ++ { ++ "command" : 4, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC" ++ }, ++ { ++ "fragment" : "-std=c++20" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 3, ++ "define" : "FOLLY_NO_CONFIG=1" ++ }, ++ { ++ "define" : "rnscreens_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 4, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 5 ++ ], ++ "standard" : "20" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "rnscreens::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "rnscreens", ++ "nameOnDisk" : "librnscreens.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/jni-adapter.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.ninja_deps b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.ninja_deps +new file mode 100644 +index 0000000..41ed1c7 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.ninja_deps differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.ninja_log b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.ninja_log +new file mode 100644 +index 0000000..6653e64 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/.ninja_log +@@ -0,0 +1,67 @@ ++# ninja log v5 ++0 1340 1761311991019749011 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++1 1566 1761311991242780769 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++1566 1649 1761311991328184571 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 13 0 clean 2f14cdef7ad3f183 ++3 2568 1761312118892858676 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++3 2880 1761312119207258024 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++2881 3023 1761312119354116476 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 16 0 clean 2f14cdef7ad3f183 ++3 1917 1761312318397248888 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++4 1997 1761312318474717709 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++1997 2131 1761312318609771505 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 35 0 clean 2f14cdef7ad3f183 ++0 7 0 clean 2f14cdef7ad3f183 ++0 8 0 clean 2f14cdef7ad3f183 ++3 2799 1761314057139854089 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++3 2978 1761314057321494459 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++2978 3049 1761314057394959985 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 16 0 clean 2f14cdef7ad3f183 ++5 7178 1761314142726678659 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++12 7340 1761314142881008231 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++7340 7636 1761314143166413966 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 11 0 clean 2f14cdef7ad3f183 ++2 3319 1761314237658048707 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++2 3794 1761314238134633403 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++3794 3859 1761314238201093164 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 45 0 clean 2f14cdef7ad3f183 ++7 4625 1761314630887165237 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++13 5317 1761314631554286719 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++5317 5632 1761314631896877584 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 27 0 clean 2f14cdef7ad3f183 ++12 5118 1761314897323841392 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++15 5647 1761314897863209839 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++5647 5734 1761314897956105178 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 46 0 clean 2f14cdef7ad3f183 ++0 14 0 clean 2f14cdef7ad3f183 ++7 9731 1761315302042361724 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++9 10151 1761315302466611995 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++10151 10245 1761315302563852441 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 28 0 clean 2f14cdef7ad3f183 ++8 7295 1761315641121776005 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++10 7615 1761315641452640058 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++7615 7768 1761315641608216298 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 15 0 clean 2f14cdef7ad3f183 ++2 2448 1761323276179682518 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++2 2586 1761323276386449477 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++2586 2659 1761323276461066634 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 19 0 clean 2f14cdef7ad3f183 ++2 4097 1761323999701393582 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++2 4672 1761324000275321299 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++4672 4736 1761324000342726196 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 13 0 clean 2f14cdef7ad3f183 ++2 3149 1761324092519530937 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++3 3216 1761324092594202618 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++3216 3284 1761324092665872100 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 21 0 clean 2f14cdef7ad3f183 ++3 4109 1761326703938721850 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++4 4161 1761326703992832128 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++4162 4245 1761326704077362677 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 20 0 clean 2f14cdef7ad3f183 ++3 4033 1761326951232295878 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++4 4468 1761326951668294395 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++4469 4541 1761326951742565544 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 ++0 15 0 clean 2f14cdef7ad3f183 ++5 3717 1761327885282796127 CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o db729f0207d2542b ++20 4142 1761327885683611483 CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o 7928fed5e1b583f7 ++4142 4212 1761327885780708798 ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so afeee529fed27ee3 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeCache.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeCache.txt +new file mode 100644 +index 0000000..434d357 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeCache.txt +@@ -0,0 +1,413 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=rnscreens ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64 ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++RNS_NEW_ARCH_ENABLED:UNINITIALIZED=false ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++rnscreens_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++ ++//Value Computed by CMake ++rnscreens_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++rnscreens_LIB_DEPENDS:STATIC=general;ReactAndroid::jsi;general;android; ++ ++//Value Computed by CMake ++rnscreens_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..7cc57c9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..f17c25f +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..3509b03 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..b0eea47 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..a9adbbb +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "x86_64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..6591d2f +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..28287e1 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..d35579c +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,258 @@ ++The target system is: Android - 1 - x86_64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_1f51c && [1/2] Building C object CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_1f51c ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_1f51c /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_1f51c && [1/2] Building C object CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_1f51c] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_1f51c /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_1f51c] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_1f51c.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_368e3 && [1/2] Building CXX object CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_368e3 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_368e3 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_368e3 && [1/2] Building CXX object CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_368e3] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_368e3 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_368e3] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_368e3.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..d20bc6f +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rnscreens.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o +new file mode 100644 +index 0000000..aee47a7 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o +new file mode 100644 +index 0000000..6d73437 +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..ec09ce4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__rnscreens_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/additional_project_files.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build.json +new file mode 100644 +index 0000000..bad64d7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build.json +@@ -0,0 +1,42 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "rnscreens", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build_mini.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build_mini.json +new file mode 100644 +index 0000000..6d7ee64 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build_mini.json +@@ -0,0 +1,31 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "rnscreens::@6890427a1f51a3e7e1df": { ++ "artifactName": "rnscreens", ++ "abi": "x86_64", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build.ninja b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build.ninja +new file mode 100644 +index 0000000..ca8e260 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build.ninja +@@ -0,0 +1,166 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: rnscreens ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Order-only phony target for rnscreens ++ ++build cmake_object_order_depends_target_rnscreens: phony || CMakeFiles/rnscreens.dir ++ ++build CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.pdb ++ ++build CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o: CXX_COMPILER__rnscreens_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp || cmake_object_order_depends_target_rnscreens ++ DEFINES = -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS ++ DEP_FILE = CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ OBJECT_FILE_DIR = CMakeFiles/rnscreens.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target rnscreens ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so ++ ++build ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so: CXX_SHARED_LIBRARY_LINKER__rnscreens_Debug CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o | /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments ++ LINK_LIBRARIES = /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so -landroid -latomic -lm ++ OBJECT_DIR = CMakeFiles/rnscreens.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = librnscreens.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/rnscreens.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build librnscreens.so: phony ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so ++ ++build rnscreens: phony ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64/librnscreens.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build_file_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build_file_index.txt +new file mode 100644 +index 0000000..e785227 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build_file_index.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/cmake_install.cmake b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/cmake_install.cmake +new file mode 100644 +index 0000000..f151809 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json +new file mode 100644 +index 0000000..ac6b3fe +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json.bin +new file mode 100644 +index 0000000..28c8bcc +Binary files /dev/null and b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json.bin differ +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/configure_fingerprint.bin b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/configure_fingerprint.bin +new file mode 100644 +index 0000000..1269a5e +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/configure_fingerprint.bin +@@ -0,0 +1,32 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmakeC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ɺʺ3 𺀳3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake  ɺʺ3 񺀳3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/additional_project_files.txt  ɺʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build.json  ɺʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/android_gradle_build_mini.json  ɺʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build.ninja  ɺʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build.ninja.txt  ɺʺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/build_file_index.txt  ɺʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json  ɺʺ3 ++ 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/compile_commands.json.bin  ɺʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/metadata_generation_command.txt  ɺʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/prefab_config.json  ɺʺ3  3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/symbol_folder_index.txt  ɺʺ3 3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt  ɺʺ3 3 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/metadata_generation_command.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/metadata_generation_command.txt +new file mode 100644 +index 0000000..41bacf1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/metadata_generation_command.txt +@@ -0,0 +1,22 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=x86_64 ++-DCMAKE_ANDROID_ARCH_ABI=x86_64 ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/prefab/x86_64/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64 ++-GNinja ++-DANDROID_STL=c++_shared ++-DRNS_NEW_ARCH_ENABLED=false ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/prefab_config.json b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/symbol_folder_index.txt b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/symbol_folder_index.txt +new file mode 100644 +index 0000000..8986403 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/Debug/5d4s6i37/x86_64/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/5d4s6i37/obj/x86_64 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/react-native-screens/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..e4b1253 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/.cxx/tools/debug/x86_64/compile_commands.json b/node_modules/react-native-screens/android/.cxx/tools/debug/x86_64/compile_commands.json +new file mode 100644 +index 0000000..cd692c9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/.cxx/tools/debug/x86_64/compile_commands.json +@@ -0,0 +1,12 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DFOLLY_NO_CONFIG=1 -Drnscreens_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/../cpp -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fno-limit-debug-info -fPIC -std=c++20 -o CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/cpp/jni-adapter.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build.gradle b/node_modules/react-native-screens/android/build.gradle +index 23446c6..12e8f0b 100644 +--- a/node_modules/react-native-screens/android/build.gradle ++++ b/node_modules/react-native-screens/android/build.gradle +@@ -139,7 +139,8 @@ android { + cmake { + arguments "-DANDROID_STL=c++_shared", + "-DRNS_NEW_ARCH_ENABLED=${IS_NEW_ARCHITECTURE_ENABLED}", +- "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON", ++ "-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384" + } + } + } +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/results.bin b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/results.bin +new file mode 100644 +index 0000000..7ed749e +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirDebug +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.dex +new file mode 100644 +index 0000000..594fc09 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.dex +new file mode 100644 +index 0000000..f03d025 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.dex +new file mode 100644 +index 0000000..86d0d0d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.dex +new file mode 100644 +index 0000000..01e1093 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.dex +new file mode 100644 +index 0000000..8a4bd2e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.dex +new file mode 100644 +index 0000000..a5af11d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.dex +new file mode 100644 +index 0000000..719b307 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.dex +new file mode 100644 +index 0000000..68d059a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.dex +new file mode 100644 +index 0000000..f5d923a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.dex +new file mode 100644 +index 0000000..eb4bbde +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.dex +new file mode 100644 +index 0000000..4bb49ab +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.dex +new file mode 100644 +index 0000000..0d0ed6a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.dex +new file mode 100644 +index 0000000..82d7aeb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenManagerInterface.dex +new file mode 100644 +index 0000000..568d0bb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.dex +new file mode 100644 +index 0000000..e11db3a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.dex +new file mode 100644 +index 0000000..81e2785 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.dex +new file mode 100644 +index 0000000..27ecfd3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.dex +new file mode 100644 +index 0000000..395fafd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.dex +new file mode 100644 +index 0000000..b42d531 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.dex +new file mode 100644 +index 0000000..cbd8cb3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.dex +new file mode 100644 +index 0000000..a40190c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.dex +new file mode 100644 +index 0000000..e7f0d17 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/BuildConfig.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/BuildConfig.dex +new file mode 100644 +index 0000000..f51fb55 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/BuildConfig.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.dex +new file mode 100644 +index 0000000..16a69f5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomSearchView.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomSearchView.dex +new file mode 100644 +index 0000000..7f7607b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomSearchView.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.dex +new file mode 100644 +index 0000000..5677c09 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomToolbar.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomToolbar.dex +new file mode 100644 +index 0000000..0a1d32d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/CustomToolbar.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.dex +new file mode 100644 +index 0000000..d2fa3ed +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.dex +new file mode 100644 +index 0000000..0f126bc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.dex +new file mode 100644 +index 0000000..eb03ffa +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledViewGroup.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledViewGroup.dex +new file mode 100644 +index 0000000..e2bd6d0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FabricEnabledViewGroup.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FragmentBackPressOverrider.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FragmentBackPressOverrider.dex +new file mode 100644 +index 0000000..c5ca54c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FragmentBackPressOverrider.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FragmentHolder.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FragmentHolder.dex +new file mode 100644 +index 0000000..db8bd19 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/FragmentHolder.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/InsetsObserverProxy.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/InsetsObserverProxy.dex +new file mode 100644 +index 0000000..ff2ad9d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/InsetsObserverProxy.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardDidHide.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardDidHide.dex +new file mode 100644 +index 0000000..d6dc2ae +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardDidHide.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardNotVisible.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardNotVisible.dex +new file mode 100644 +index 0000000..d9b67fa +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardNotVisible.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardState.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardState.dex +new file mode 100644 +index 0000000..6923d62 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardState.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardVisible.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardVisible.dex +new file mode 100644 +index 0000000..11e1cf0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/KeyboardVisible.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ModalScreenViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ModalScreenViewManager$Companion.dex +new file mode 100644 +index 0000000..ecb5b17 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ModalScreenViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ModalScreenViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ModalScreenViewManager.dex +new file mode 100644 +index 0000000..26ec8ca +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ModalScreenViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeProxy$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeProxy$Companion.dex +new file mode 100644 +index 0000000..cea9abc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeProxy$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeProxy.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeProxy.dex +new file mode 100644 +index 0000000..1732a1f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeProxy.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeScreensModuleSpec.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeScreensModuleSpec.dex +new file mode 100644 +index 0000000..7eff5c5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/NativeScreensModuleSpec.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.dex +new file mode 100644 +index 0000000..ed45b10 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/RNScreensPackage$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/RNScreensPackage$Companion.dex +new file mode 100644 +index 0000000..4647d97 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/RNScreensPackage$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/RNScreensPackage.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/RNScreensPackage.dex +new file mode 100644 +index 0000000..f0380fc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/RNScreensPackage.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$ActivityState.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$ActivityState.dex +new file mode 100644 +index 0000000..4f318d5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$ActivityState.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$Companion.dex +new file mode 100644 +index 0000000..aea1ece +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$ReplaceAnimation.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$ReplaceAnimation.dex +new file mode 100644 +index 0000000..703211f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$ReplaceAnimation.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$StackAnimation.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$StackAnimation.dex +new file mode 100644 +index 0000000..cd11217 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$StackAnimation.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$StackPresentation.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$StackPresentation.dex +new file mode 100644 +index 0000000..4f8501e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$StackPresentation.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$WhenMappings.dex +new file mode 100644 +index 0000000..4702ff5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$WindowTraits.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$WindowTraits.dex +new file mode 100644 +index 0000000..f7ca2cd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$WindowTraits.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.dex +new file mode 100644 +index 0000000..992d160 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen.dex +new file mode 100644 +index 0000000..b9658fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/Screen.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.dex +new file mode 100644 +index 0000000..dab15cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainer.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainer.dex +new file mode 100644 +index 0000000..dfd9770 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainer.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.dex +new file mode 100644 +index 0000000..708080b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainerViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainerViewManager.dex +new file mode 100644 +index 0000000..99d5eef +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContainerViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.dex +new file mode 100644 +index 0000000..323d82b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapper.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapper.dex +new file mode 100644 +index 0000000..99eefe6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapper.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.dex +new file mode 100644 +index 0000000..e6fb4bf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapperManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapperManager.dex +new file mode 100644 +index 0000000..bacffb6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenContentWrapperManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenEventDispatcher.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenEventDispatcher.dex +new file mode 100644 +index 0000000..d26608e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenEventDispatcher.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$Companion.dex +new file mode 100644 +index 0000000..159311e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.dex +new file mode 100644 +index 0000000..ae9c420 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.dex +new file mode 100644 +index 0000000..74f7b37 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter.dex +new file mode 100644 +index 0000000..7b6c237 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooter.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooterManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooterManager$Companion.dex +new file mode 100644 +index 0000000..23d7a9f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooterManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooterManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooterManager.dex +new file mode 100644 +index 0000000..9e41ac1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFooterManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$Companion.dex +new file mode 100644 +index 0000000..f2bbda3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.dex +new file mode 100644 +index 0000000..b9c6c65 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.dex +new file mode 100644 +index 0000000..6cbb0b3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$WhenMappings.dex +new file mode 100644 +index 0000000..5723cc1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment.dex +new file mode 100644 +index 0000000..6dfe551 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragment.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragmentWrapper.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragmentWrapper.dex +new file mode 100644 +index 0000000..81fe9d2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenFragmentWrapper.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenKt.dex +new file mode 100644 +index 0000000..1e30884 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenModalFragment$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenModalFragment$Companion.dex +new file mode 100644 +index 0000000..b14f1c8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenModalFragment$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenModalFragment.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenModalFragment.dex +new file mode 100644 +index 0000000..b138608 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenModalFragment.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$Companion.dex +new file mode 100644 +index 0000000..979c2de +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$DrawingOp.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$DrawingOp.dex +new file mode 100644 +index 0000000..d084728 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$DrawingOp.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$WhenMappings.dex +new file mode 100644 +index 0000000..5747517 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack.dex +new file mode 100644 +index 0000000..f5231c3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStack.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.dex +new file mode 100644 +index 0000000..e07fb30 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragment.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragment.dex +new file mode 100644 +index 0000000..e98538c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragment.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragmentWrapper.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragmentWrapper.dex +new file mode 100644 +index 0000000..f41c5be +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackFragmentWrapper.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.dex +new file mode 100644 +index 0000000..8f2a30b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.dex +new file mode 100644 +index 0000000..433312b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.dex +new file mode 100644 +index 0000000..c76cd42 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig.dex +new file mode 100644 +index 0000000..c64a29f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfig.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.dex +new file mode 100644 +index 0000000..59676fc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.dex +new file mode 100644 +index 0000000..8441cc8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.dex +new file mode 100644 +index 0000000..8e8942f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.dex +new file mode 100644 +index 0000000..28612df +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubview.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubview.dex +new file mode 100644 +index 0000000..3be21cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubview.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.dex +new file mode 100644 +index 0000000..0273a42 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.dex +new file mode 100644 +index 0000000..7454bc1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackViewManager$Companion.dex +new file mode 100644 +index 0000000..6d5f1ff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackViewManager.dex +new file mode 100644 +index 0000000..acb2b21 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenStackViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenViewManager$Companion.dex +new file mode 100644 +index 0000000..28faacf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenViewManager.dex +new file mode 100644 +index 0000000..87c3bd1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.dex +new file mode 100644 +index 0000000..1478163 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.dex +new file mode 100644 +index 0000000..173b5e0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits.dex +new file mode 100644 +index 0000000..6c35601 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreenWindowTraits.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensModule$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensModule$Companion.dex +new file mode 100644 +index 0000000..640ac8a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensModule$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensModule.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensModule.dex +new file mode 100644 +index 0000000..4d5ed41 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensModule.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensShadowNode.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensShadowNode.dex +new file mode 100644 +index 0000000..004a7e9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ScreensShadowNode.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarManager$Companion.dex +new file mode 100644 +index 0000000..19ff095 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarManager.dex +new file mode 100644 +index 0000000..b2284e4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.dex +new file mode 100644 +index 0000000..691d6f3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.dex +new file mode 100644 +index 0000000..0004ed8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.dex +new file mode 100644 +index 0000000..0764d05 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.dex +new file mode 100644 +index 0000000..6add7f3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.dex +new file mode 100644 +index 0000000..fda0087 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.dex +new file mode 100644 +index 0000000..4b0c1fb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.dex +new file mode 100644 +index 0000000..7d9e397 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.dex +new file mode 100644 +index 0000000..b48193a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView.dex +new file mode 100644 +index 0000000..2657f4a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchBarView.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchViewFormatter.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchViewFormatter.dex +new file mode 100644 +index 0000000..34ae71c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/SearchViewFormatter.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.dex +new file mode 100644 +index 0000000..ca2bef8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.dex +new file mode 100644 +index 0000000..83b7740 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.dex +new file mode 100644 +index 0000000..95ca54a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.dex +new file mode 100644 +index 0000000..17ac3a8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.dex +new file mode 100644 +index 0000000..352d595 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.dex +new file mode 100644 +index 0000000..85beffa +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingView.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingView.dex +new file mode 100644 +index 0000000..9247504 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingView.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.dex +new file mode 100644 +index 0000000..ce27d83 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.dex +new file mode 100644 +index 0000000..be47eff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.dex +new file mode 100644 +index 0000000..b3cf9cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.dex +new file mode 100644 +index 0000000..51bb8f4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.dex +new file mode 100644 +index 0000000..0ba1d8d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.dex +new file mode 100644 +index 0000000..58464c8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.dex +new file mode 100644 +index 0000000..c86fb26 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.dex +new file mode 100644 +index 0000000..9c6d1a6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate.dex +new file mode 100644 +index 0000000..4da9508 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetUtils.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetUtils.dex +new file mode 100644 +index 0000000..8387fc1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetUtils.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.dex +new file mode 100644 +index 0000000..979d75d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.dex +new file mode 100644 +index 0000000..6bb4c56 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderAttachedEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderAttachedEvent.dex +new file mode 100644 +index 0000000..48f163d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderAttachedEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.dex +new file mode 100644 +index 0000000..e609c75 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.dex +new file mode 100644 +index 0000000..fdac5b8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.dex +new file mode 100644 +index 0000000..a36d1d3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderDetachedEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderDetachedEvent.dex +new file mode 100644 +index 0000000..7255f12 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderDetachedEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.dex +new file mode 100644 +index 0000000..2cff69a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.dex +new file mode 100644 +index 0000000..b18c7c9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.dex +new file mode 100644 +index 0000000..88810a9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.dex +new file mode 100644 +index 0000000..a33e502 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.dex +new file mode 100644 +index 0000000..4b98524 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.dex +new file mode 100644 +index 0000000..6b21896 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate.dex +new file mode 100644 +index 0000000..d776a84 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAnimationDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.dex +new file mode 100644 +index 0000000..ac2422e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAppearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAppearEvent.dex +new file mode 100644 +index 0000000..f62df1e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenAppearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.dex +new file mode 100644 +index 0000000..d51250d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDisappearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDisappearEvent.dex +new file mode 100644 +index 0000000..cafaf71 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDisappearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.dex +new file mode 100644 +index 0000000..6fc975c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDismissedEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDismissedEvent.dex +new file mode 100644 +index 0000000..efc20da +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenDismissedEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenEventEmitter.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenEventEmitter.dex +new file mode 100644 +index 0000000..35b3f6b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenEventEmitter.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.dex +new file mode 100644 +index 0000000..9e86419 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.dex +new file mode 100644 +index 0000000..e73c3d7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.dex +new file mode 100644 +index 0000000..8800c64 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillAppearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillAppearEvent.dex +new file mode 100644 +index 0000000..e966585 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillAppearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.dex +new file mode 100644 +index 0000000..0695959 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.dex +new file mode 100644 +index 0000000..8e6a46d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.dex +new file mode 100644 +index 0000000..334f03e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarBlurEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarBlurEvent.dex +new file mode 100644 +index 0000000..3b5da25 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarBlurEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.dex +new file mode 100644 +index 0000000..41add8f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.dex +new file mode 100644 +index 0000000..c89be01 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.dex +new file mode 100644 +index 0000000..016edd2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarCloseEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarCloseEvent.dex +new file mode 100644 +index 0000000..17bd32c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarCloseEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.dex +new file mode 100644 +index 0000000..d7c0223 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarFocusEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarFocusEvent.dex +new file mode 100644 +index 0000000..8c3efe9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarFocusEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.dex +new file mode 100644 +index 0000000..7d0d7f5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarOpenEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarOpenEvent.dex +new file mode 100644 +index 0000000..dc6f16b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarOpenEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.dex +new file mode 100644 +index 0000000..6430c6c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.dex +new file mode 100644 +index 0000000..2586b1b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.dex +new file mode 100644 +index 0000000..64bf0fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SheetDetentChangedEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SheetDetentChangedEvent.dex +new file mode 100644 +index 0000000..493c3e6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/SheetDetentChangedEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.dex +new file mode 100644 +index 0000000..c3eb653 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.dex +new file mode 100644 +index 0000000..6e276db +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/FragmentExtKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/FragmentExtKt.dex +new file mode 100644 +index 0000000..398da2a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/FragmentExtKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/NumericExtKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/NumericExtKt.dex +new file mode 100644 +index 0000000..f8bc4b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/NumericExtKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/ViewExtKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/ViewExtKt.dex +new file mode 100644 +index 0000000..4c07a2d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/ext/ViewExtKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.dex +new file mode 100644 +index 0000000..13b7109 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.dex +new file mode 100644 +index 0000000..bb2cf75 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.dex +new file mode 100644 +index 0000000..097c773 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.dex +new file mode 100644 +index 0000000..4c3f939 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/FragmentProviding.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/FragmentProviding.dex +new file mode 100644 +index 0000000..3e3a973 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/FragmentProviding.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.dex +new file mode 100644 +index 0000000..7c2e307 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.dex +new file mode 100644 +index 0000000..bce403d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.dex +new file mode 100644 +index 0000000..219c5ae +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.dex +new file mode 100644 +index 0000000..f2ffd15 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.dex +new file mode 100644 +index 0000000..11cf670 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.dex +new file mode 100644 +index 0000000..a9f0305 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.dex +new file mode 100644 +index 0000000..75ef717 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.dex +new file mode 100644 +index 0000000..4c7de6d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.dex +new file mode 100644 +index 0000000..6d6b8f2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.dex +new file mode 100644 +index 0000000..3f8bbb0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.dex +new file mode 100644 +index 0000000..339020d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.dex +new file mode 100644 +index 0000000..39238ef +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.dex +new file mode 100644 +index 0000000..55b2462 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.dex +new file mode 100644 +index 0000000..ade26f6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen.dex +new file mode 100644 +index 0000000..3066eed +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreen.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.dex +new file mode 100644 +index 0000000..d5c5fdf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.dex +new file mode 100644 +index 0000000..7eabd18 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.dex +new file mode 100644 +index 0000000..38d2150 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.dex +new file mode 100644 +index 0000000..1c208a2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.dex +new file mode 100644 +index 0000000..a76b61c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.dex +new file mode 100644 +index 0000000..840a9d2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.dex +new file mode 100644 +index 0000000..5a964d0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.dex +new file mode 100644 +index 0000000..878d8eb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.dex +new file mode 100644 +index 0000000..465e678 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.dex +new file mode 100644 +index 0000000..58a1700 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.dex +new file mode 100644 +index 0000000..c749e50 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.dex +new file mode 100644 +index 0000000..3935787 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.dex +new file mode 100644 +index 0000000..d20a410 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.dex +new file mode 100644 +index 0000000..99c4c27 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.dex +new file mode 100644 +index 0000000..e68c000 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.dex +new file mode 100644 +index 0000000..33c1fc8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.dex +new file mode 100644 +index 0000000..c36882b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.dex +new file mode 100644 +index 0000000..6063a86 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.dex +new file mode 100644 +index 0000000..d846815 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.dex +new file mode 100644 +index 0000000..2101251 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.dex +new file mode 100644 +index 0000000..3a07c05 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.dex +new file mode 100644 +index 0000000..af943bd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.dex +new file mode 100644 +index 0000000..fb49190 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost.dex +new file mode 100644 +index 0000000..48cbe1f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHost.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.dex +new file mode 100644 +index 0000000..bf54410 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.dex +new file mode 100644 +index 0000000..a49c796 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.dex +new file mode 100644 +index 0000000..16ef99b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.dex +new file mode 100644 +index 0000000..d47dea3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.dex +new file mode 100644 +index 0000000..23d54d4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.dex +new file mode 100644 +index 0000000..0cc931a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.dex +new file mode 100644 +index 0000000..081b2ca +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.dex +new file mode 100644 +index 0000000..ae5fc9b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.dex +new file mode 100644 +index 0000000..7532a63 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.dex +new file mode 100644 +index 0000000..4659e37 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.dex +new file mode 100644 +index 0000000..f585859 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.dex +new file mode 100644 +index 0000000..4cca8b0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.dex +new file mode 100644 +index 0000000..fee5241 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.dex +new file mode 100644 +index 0000000..4437156 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.dex +new file mode 100644 +index 0000000..8a2fe0f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.dex +new file mode 100644 +index 0000000..ebeb389 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.dex +new file mode 100644 +index 0000000..aac381e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.dex +new file mode 100644 +index 0000000..5c1fb22 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.dex +new file mode 100644 +index 0000000..4c855bb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.dex +new file mode 100644 +index 0000000..bcbb496 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.dex +new file mode 100644 +index 0000000..a4b3cdf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.dex +new file mode 100644 +index 0000000..b5d20ab +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/EdgeInsets.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/EdgeInsets.dex +new file mode 100644 +index 0000000..0b870be +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/EdgeInsets.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/InsetType.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/InsetType.dex +new file mode 100644 +index 0000000..c7c9558 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/InsetType.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaProvider.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaProvider.dex +new file mode 100644 +index 0000000..5a2d1a8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaProvider.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.dex +new file mode 100644 +index 0000000..c585fba +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaView.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaView.dex +new file mode 100644 +index 0000000..71ded92 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaView.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewKt.dex +new file mode 100644 +index 0000000..a44e773 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.dex +new file mode 100644 +index 0000000..cd5b5e2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewManager.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewManager.dex +new file mode 100644 +index 0000000..6f91b63 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/SafeAreaViewManager.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.dex +new file mode 100644 +index 0000000..ecf9081 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.dex +new file mode 100644 +index 0000000..006eeae +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.dex +new file mode 100644 +index 0000000..72b85b0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.dex +new file mode 100644 +index 0000000..cb74598 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/anim/ScreensAnimation.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/anim/ScreensAnimation.dex +new file mode 100644 +index 0000000..17e2a21 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/anim/ScreensAnimation.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.dex +new file mode 100644 +index 0000000..f2852a7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.dex +new file mode 100644 +index 0000000..3ea024a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ReverseFromIndex.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ReverseFromIndex.dex +new file mode 100644 +index 0000000..1d58051 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ReverseFromIndex.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ReverseOrder.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ReverseOrder.dex +new file mode 100644 +index 0000000..c0b893f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ReverseOrder.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.dex +new file mode 100644 +index 0000000..0da9fd0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.dex +new file mode 100644 +index 0000000..a4e4676 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.dex +new file mode 100644 +index 0000000..cad768c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.dex +new file mode 100644 +index 0000000..e6f7105 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheEntry$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheEntry$Companion.dex +new file mode 100644 +index 0000000..f5f0457 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheEntry$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheEntry.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheEntry.dex +new file mode 100644 +index 0000000..5914cd0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheEntry.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheKey.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheKey.dex +new file mode 100644 +index 0000000..6c4ed72 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/CacheKey.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/DeviceUtils.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/DeviceUtils.dex +new file mode 100644 +index 0000000..c22fa6c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/DeviceUtils.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.dex +new file mode 100644 +index 0000000..06174c3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.dex +new file mode 100644 +index 0000000..db448e7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/InsetsKtKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/InsetsKtKt.dex +new file mode 100644 +index 0000000..d03b362 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/InsetsKtKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/PaddingBundle.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/PaddingBundle.dex +new file mode 100644 +index 0000000..01ea9a9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/PaddingBundle.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/RNSLog.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/RNSLog.dex +new file mode 100644 +index 0000000..f9781c1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/RNSLog.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.dex +new file mode 100644 +index 0000000..c69663d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.dex +new file mode 100644 +index 0000000..51e2b44 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.dex b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.dex +new file mode 100644 +index 0000000..4f7e671 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.dex differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/91a6f9ddfce238823e5ee8ef4a456a4e/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ +diff --git a/node_modules/react-native-screens/android/build/.transforms/d2d5206c65a9884ba08110ee2db3207a/results.bin b/node_modules/react-native-screens/android/build/.transforms/d2d5206c65a9884ba08110ee2db3207a/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/.transforms/d2d5206c65a9884ba08110ee2db3207a/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-screens/android/build/.transforms/d2d5206c65a9884ba08110ee2db3207a/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-screens/android/build/.transforms/d2d5206c65a9884ba08110ee2db3207a/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..cfefb8d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/.transforms/d2d5206c65a9884ba08110ee2db3207a/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-screens/android/build/generated/source/buildConfig/debug/com/swmansion/rnscreens/BuildConfig.java b/node_modules/react-native-screens/android/build/generated/source/buildConfig/debug/com/swmansion/rnscreens/BuildConfig.java +new file mode 100644 +index 0000000..9a83ce2 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/generated/source/buildConfig/debug/com/swmansion/rnscreens/BuildConfig.java +@@ -0,0 +1,14 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.swmansion.rnscreens; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.swmansion.rnscreens"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = false; ++ // Field from default config. ++ public static final boolean RNS_DEBUG_LOGGING = false; ++} +diff --git a/node_modules/react-native-screens/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-screens/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..8ed1577 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-screens/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..37294a0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.swmansion.rnscreens", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar b/node_modules/react-native-screens/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar +new file mode 100644 +index 0000000..7ebe334 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-screens/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/react-native-screens/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-screens/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/node_modules/react-native-screens/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-screens/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..40dd3e2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-screens/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..484e2ae +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-screens/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..0121741 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +@@ -0,0 +1,29 @@ ++int anim rns_default_enter_in 0x0 ++int anim rns_default_enter_out 0x0 ++int anim rns_default_exit_in 0x0 ++int anim rns_default_exit_out 0x0 ++int anim rns_fade_from_bottom 0x0 ++int anim rns_fade_in 0x0 ++int anim rns_fade_out 0x0 ++int anim rns_fade_to_bottom 0x0 ++int anim rns_ios_from_left_background_close 0x0 ++int anim rns_ios_from_left_background_open 0x0 ++int anim rns_ios_from_left_foreground_close 0x0 ++int anim rns_ios_from_left_foreground_open 0x0 ++int anim rns_ios_from_right_background_close 0x0 ++int anim rns_ios_from_right_background_open 0x0 ++int anim rns_ios_from_right_foreground_close 0x0 ++int anim rns_ios_from_right_foreground_open 0x0 ++int anim rns_no_animation_20 0x0 ++int anim rns_no_animation_250 0x0 ++int anim rns_no_animation_350 0x0 ++int anim rns_no_animation_medium 0x0 ++int anim rns_slide_in_from_bottom 0x0 ++int anim rns_slide_in_from_left 0x0 ++int anim rns_slide_in_from_right 0x0 ++int anim rns_slide_out_to_bottom 0x0 ++int anim rns_slide_out_to_left 0x0 ++int anim rns_slide_out_to_right 0x0 ++int anim rns_standard_accelerate_interpolator 0x0 ++int drawable rns_rounder_top_corners_shape 0x0 ++int style custom 0x0 +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_enter_in.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_enter_in.xml.flat +new file mode 100644 +index 0000000..87e3451 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_enter_in.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_enter_out.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_enter_out.xml.flat +new file mode 100644 +index 0000000..c5597d3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_enter_out.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_exit_in.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_exit_in.xml.flat +new file mode 100644 +index 0000000..5fc4a65 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_exit_in.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_exit_out.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_exit_out.xml.flat +new file mode 100644 +index 0000000..859e999 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim-v33_rns_default_exit_out.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_enter_in.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_enter_in.xml.flat +new file mode 100644 +index 0000000..df9f63e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_enter_in.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_enter_out.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_enter_out.xml.flat +new file mode 100644 +index 0000000..cf3b4a6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_enter_out.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_exit_in.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_exit_in.xml.flat +new file mode 100644 +index 0000000..05da639 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_exit_in.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_exit_out.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_exit_out.xml.flat +new file mode 100644 +index 0000000..33e2fd0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_default_exit_out.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_from_bottom.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_from_bottom.xml.flat +new file mode 100644 +index 0000000..05f437f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_from_bottom.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_in.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_in.xml.flat +new file mode 100644 +index 0000000..9c85ebf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_in.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_out.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_out.xml.flat +new file mode 100644 +index 0000000..81ec772 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_out.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_to_bottom.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_to_bottom.xml.flat +new file mode 100644 +index 0000000..efc25ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_fade_to_bottom.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_background_close.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_background_close.xml.flat +new file mode 100644 +index 0000000..7c322a7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_background_close.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_background_open.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_background_open.xml.flat +new file mode 100644 +index 0000000..5c2acc4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_background_open.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_foreground_close.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_foreground_close.xml.flat +new file mode 100644 +index 0000000..3e3e5d6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_foreground_close.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_foreground_open.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_foreground_open.xml.flat +new file mode 100644 +index 0000000..c677bef +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_left_foreground_open.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_background_close.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_background_close.xml.flat +new file mode 100644 +index 0000000..ea213cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_background_close.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_background_open.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_background_open.xml.flat +new file mode 100644 +index 0000000..888dd1d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_background_open.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_foreground_close.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_foreground_close.xml.flat +new file mode 100644 +index 0000000..35c8510 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_foreground_close.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_foreground_open.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_foreground_open.xml.flat +new file mode 100644 +index 0000000..0a210d9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_ios_from_right_foreground_open.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_20.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_20.xml.flat +new file mode 100644 +index 0000000..b148538 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_20.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_250.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_250.xml.flat +new file mode 100644 +index 0000000..54b701e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_250.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_350.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_350.xml.flat +new file mode 100644 +index 0000000..6e0b6d5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_350.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_medium.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_medium.xml.flat +new file mode 100644 +index 0000000..abcea1d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_no_animation_medium.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_bottom.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_bottom.xml.flat +new file mode 100644 +index 0000000..a7c4bc7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_bottom.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_left.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_left.xml.flat +new file mode 100644 +index 0000000..19ad88a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_left.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_right.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_right.xml.flat +new file mode 100644 +index 0000000..69f3ca7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_in_from_right.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_bottom.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_bottom.xml.flat +new file mode 100644 +index 0000000..46e9239 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_bottom.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_left.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_left.xml.flat +new file mode 100644 +index 0000000..3d75b25 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_left.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_right.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_right.xml.flat +new file mode 100644 +index 0000000..8709834 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_slide_out_to_right.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_standard_accelerate_interpolator.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_standard_accelerate_interpolator.xml.flat +new file mode 100644 +index 0000000..0526a2f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/anim_rns_standard_accelerate_interpolator.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_rns_rounder_top_corners_shape.xml.flat b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_rns_rounder_top_corners_shape.xml.flat +new file mode 100644 +index 0000000..8c94467 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_rns_rounder_top_corners_shape.xml.flat differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_command_rnscreens b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_command_rnscreens +new file mode 100755 +index 0000000..21b65b6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_command_rnscreens +@@ -0,0 +1,4 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a \ ++ rnscreens +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_model.json b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_model.json +new file mode 100644 +index 0000000..dc797a6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_model.json +@@ -0,0 +1,209 @@ ++{ ++ "info": { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "soFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a", ++ "soRepublishFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cmake/debug/obj/arm64-v8a", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DRNS_NEW_ARCH_ENABLED\u003dfalse", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx", ++ "intermediatesBaseFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates", ++ "intermediatesFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx", ++ "gradleModulePathName": ":rnscreens", ++ "moduleRootFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android", ++ "moduleBuildFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build.gradle", ++ "makeFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/android", ++ "sdkFolder": "/Users/yogesh/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "2wm5w3i16554i2t69465d6w622c4jg55681d6h58212p1a546r5j1445h3x22", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.2.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DRNS_NEW_ARCH_ENABLED\u003dfalse\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "configurationArguments": [ ++ "-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003darm64-v8a", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a", ++ "-DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab", ++ "-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DRNS_NEW_ARCH_ENABLED\u003dfalse", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "stlLibraryFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_stderr_rnscreens.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_stderr_rnscreens.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_stdout_rnscreens.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_stdout_rnscreens.txt +new file mode 100644 +index 0000000..cac789d +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/build_stdout_rnscreens.txt +@@ -0,0 +1,4 @@ ++ninja: Entering directory `/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a' ++[1/3] Building CXX object CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o ++[2/3] Building CXX object CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o ++[3/3] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_command b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_command +new file mode 100755 +index 0000000..3f4a2c4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_command +@@ -0,0 +1,22 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=arm64-v8a \ ++ -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a \ ++ -DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab \ ++ -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DRNS_NEW_ARCH_ENABLED=false \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_stderr.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_stdout.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_stdout.txt +new file mode 100644 +index 0000000..b32711a +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/generate_cxx_metadata_12694_timing.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/generate_cxx_metadata_12694_timing.txt +new file mode 100644 +index 0000000..048935a +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/generate_cxx_metadata_12694_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 1186ms ++ generate-prefab-packages completed in 1193ms ++ execute-generate-process ++ exec-configure 918ms ++ execute-generate-process completed in 928ms ++generate_cxx_metadata completed in 2128ms ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/metadata_generation_record.json b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/metadata_generation_record.json +new file mode 100644 +index 0000000..53b7eb8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/metadata_generation_record.json +@@ -0,0 +1,184 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: arm64-v8a", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/android_gradle_build.json due to:", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- no fingerprint file, will remove stale configuration folder", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n arm64-v8a \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging12609537412109047325/staged-cli-output \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "removing stale contents from \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "created folder \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DRNS_NEW_ARCH_ENABLED\u003dfalse \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/arm64-v8a/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DRNS_NEW_ARCH_ENABLED\u003dfalse \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json.bin normally", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/arm64-v8a/compile_commands.json to /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/tools/debug/arm64-v8a/compile_commands.json", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/prefab_command b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/prefab_command +new file mode 100755 +index 0000000..e034d1f +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/prefab_command +@@ -0,0 +1,20 @@ ++/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ arm64-v8a \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging12609537412109047325/staged-cli-output \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/prefab_stderr.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/prefab_stdout.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/arm64-v8a/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_command_rnscreens b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_command_rnscreens +new file mode 100755 +index 0000000..652be4f +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_command_rnscreens +@@ -0,0 +1,4 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 \ ++ rnscreens +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_model.json b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_model.json +new file mode 100644 +index 0000000..51858bc +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_model.json +@@ -0,0 +1,209 @@ ++{ ++ "info": { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "soFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64", ++ "soRepublishFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cmake/debug/obj/x86_64", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DRNS_NEW_ARCH_ENABLED\u003dfalse", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx", ++ "intermediatesBaseFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates", ++ "intermediatesFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx", ++ "gradleModulePathName": ":rnscreens", ++ "moduleRootFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android", ++ "moduleBuildFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build.gradle", ++ "makeFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/android", ++ "sdkFolder": "/Users/yogesh/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "2wm5w3i16554i2t69465d6w622c4jg55681d6h58212p1a546r5j1445h3x22", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.2.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DRNS_NEW_ARCH_ENABLED\u003dfalse\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "configurationArguments": [ ++ "-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003dx86_64", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003dx86_64", ++ "-DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab", ++ "-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DRNS_NEW_ARCH_ENABLED\u003dfalse", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "stlLibraryFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_stderr_rnscreens.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_stderr_rnscreens.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_stdout_rnscreens.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_stdout_rnscreens.txt +new file mode 100644 +index 0000000..e1dc547 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/build_stdout_rnscreens.txt +@@ -0,0 +1,4 @@ ++ninja: Entering directory `/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64' ++[1/3] Building CXX object CMakeFiles/rnscreens.dir/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/cpp/RNScreensTurboModule.cpp.o ++[2/3] Building CXX object CMakeFiles/rnscreens.dir/src/main/cpp/jni-adapter.cpp.o ++[3/3] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_command b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_command +new file mode 100755 +index 0000000..a420029 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_command +@@ -0,0 +1,22 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=x86_64 \ ++ -DCMAKE_ANDROID_ARCH_ABI=x86_64 \ ++ -DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab \ ++ -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DRNS_NEW_ARCH_ENABLED=false \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_stderr.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_stdout.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_stdout.txt +new file mode 100644 +index 0000000..04da840 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/generate_cxx_metadata_12697_timing.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/generate_cxx_metadata_12697_timing.txt +new file mode 100644 +index 0000000..73c83e4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/generate_cxx_metadata_12697_timing.txt +@@ -0,0 +1,11 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 831ms ++ generate-prefab-packages completed in 837ms ++ execute-generate-process ++ exec-configure 608ms ++ [gap of 13ms] ++ execute-generate-process completed in 622ms ++generate_cxx_metadata completed in 1469ms ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/metadata_generation_record.json b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/metadata_generation_record.json +new file mode 100644 +index 0000000..361d7e9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/metadata_generation_record.json +@@ -0,0 +1,184 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86_64", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/android_gradle_build.json due to:", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- no fingerprint file, will remove stale configuration folder", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n x86_64 \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging5041163481969441966/staged-cli-output \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "removing stale contents from \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "created folder \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DRNS_NEW_ARCH_ENABLED\u003dfalse \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/prefab/x86_64/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DRNS_NEW_ARCH_ENABLED\u003dfalse \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json.bin normally", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/Debug/2wm5w3i1/x86_64/compile_commands.json to /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/.cxx/tools/debug/x86_64/compile_commands.json", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/prefab_command b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/prefab_command +new file mode 100755 +index 0000000..0ba42c8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/prefab_command +@@ -0,0 +1,20 @@ ++/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ x86_64 \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging5041163481969441966/staged-cli-output \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/prefab_stderr.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/prefab_stdout.txt b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/logs/x86_64/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/libjsi.so b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..0d856b9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so +new file mode 100755 +index 0000000..782afa5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/arm64-v8a/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/libc++_shared.so b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/libjsi.so b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..a2c5e5c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so +new file mode 100755 +index 0000000..59a7cec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/cxx/Debug/2wm5w3i1/obj/x86_64/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/react-native-screens/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..63a50b4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..497c64a +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1,33 @@ ++#Fri Oct 24 22:53:24 IST 2025 ++com.swmansion.rnscreens-res-7\:/anim-v33/rns_default_exit_in.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_in.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_slide_in_from_bottom.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_bottom.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_right_foreground_close.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_close.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_fade_from_bottom.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_from_bottom.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_slide_out_to_right.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_right.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_slide_out_to_left.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_left.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_fade_to_bottom.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_to_bottom.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_slide_out_to_bottom.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_bottom.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_right_background_close.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_close.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_slide_in_from_left.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_left.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_left_foreground_open.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_open.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_no_animation_20.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_20.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_left_foreground_close.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_close.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_left_background_close.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_close.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_no_animation_medium.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_medium.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_standard_accelerate_interpolator.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_standard_accelerate_interpolator.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_left_background_open.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_open.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_slide_in_from_right.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_right.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_fade_out.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_out.xml ++com.swmansion.rnscreens-res-7\:/anim-v33/rns_default_enter_in.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_in.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_default_exit_out.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_out.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_default_exit_in.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_in.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_default_enter_in.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_in.xml ++com.swmansion.rnscreens-res-7\:/anim-v33/rns_default_exit_out.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_out.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_fade_in.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_in.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_no_animation_250.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_250.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_default_enter_out.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_out.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_right_foreground_open.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_open.xml ++com.swmansion.rnscreens-res-6\:/drawable/rns_rounder_top_corners_shape.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rns_rounder_top_corners_shape.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_no_animation_350.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_350.xml ++com.swmansion.rnscreens-res-6\:/anim/rns_ios_from_right_background_open.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_open.xml ++com.swmansion.rnscreens-res-7\:/anim-v33/rns_default_enter_out.xml=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_out.xml +diff --git a/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..e8baa1c +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +@@ -0,0 +1,6 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..f70f4c4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,4 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-screens/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..b92023a +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-screens/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..ca1ae78 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-screens/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..68d2bf8 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnscreens_debug.kotlin_module b/node_modules/react-native-screens/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnscreens_debug.kotlin_module +new file mode 100644 +index 0000000..54cacd2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnscreens_debug.kotlin_module differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.class +new file mode 100644 +index 0000000..caabe8a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.class +new file mode 100644 +index 0000000..119ed8c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.class +new file mode 100644 +index 0000000..5852be6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.class +new file mode 100644 +index 0000000..2866b56 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.class +new file mode 100644 +index 0000000..4767223 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.class +new file mode 100644 +index 0000000..2696cd5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.class +new file mode 100644 +index 0000000..a6454fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.class +new file mode 100644 +index 0000000..8f86314 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.class +new file mode 100644 +index 0000000..a661ea1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.class +new file mode 100644 +index 0000000..af121c0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.class +new file mode 100644 +index 0000000..bbcb628 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.class +new file mode 100644 +index 0000000..58b3599 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.class +new file mode 100644 +index 0000000..702257c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenManagerInterface.class +new file mode 100644 +index 0000000..99424b8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.class +new file mode 100644 +index 0000000..c1d2ee7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.class +new file mode 100644 +index 0000000..4a3afab +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.class +new file mode 100644 +index 0000000..124acdd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.class +new file mode 100644 +index 0000000..7498e82 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.class +new file mode 100644 +index 0000000..fc32f7d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.class +new file mode 100644 +index 0000000..6ae1a37 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.class +new file mode 100644 +index 0000000..ac027b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.class +new file mode 100644 +index 0000000..4202707 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/rnscreens/BuildConfig.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/rnscreens/BuildConfig.class +new file mode 100644 +index 0000000..3c46498 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/rnscreens/BuildConfig.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/rnscreens/NativeScreensModuleSpec.class b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/rnscreens/NativeScreensModuleSpec.class +new file mode 100644 +index 0000000..babf292 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/swmansion/rnscreens/NativeScreensModuleSpec.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/librnscreens.so +new file mode 100644 +index 0000000..9133128 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/librnscreens.so +new file mode 100644 +index 0000000..577058e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/librnscreens.so +new file mode 100644 +index 0000000..782afa5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/librnscreens.so +new file mode 100644 +index 0000000..59a7cec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-screens/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..d8ac2d0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,31 @@ ++R_DEF: Internal format may change without notice ++local ++anim rns_default_enter_in ++anim rns_default_enter_out ++anim rns_default_exit_in ++anim rns_default_exit_out ++anim rns_fade_from_bottom ++anim rns_fade_in ++anim rns_fade_out ++anim rns_fade_to_bottom ++anim rns_ios_from_left_background_close ++anim rns_ios_from_left_background_open ++anim rns_ios_from_left_foreground_close ++anim rns_ios_from_left_foreground_open ++anim rns_ios_from_right_background_close ++anim rns_ios_from_right_background_open ++anim rns_ios_from_right_foreground_close ++anim rns_ios_from_right_foreground_open ++anim rns_no_animation_20 ++anim rns_no_animation_250 ++anim rns_no_animation_350 ++anim rns_no_animation_medium ++anim rns_slide_in_from_bottom ++anim rns_slide_in_from_left ++anim rns_slide_in_from_right ++anim rns_slide_out_to_bottom ++anim rns_slide_out_to_left ++anim rns_slide_out_to_right ++anim rns_standard_accelerate_interpolator ++drawable rns_rounder_top_corners_shape ++style custom +diff --git a/node_modules/react-native-screens/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-screens/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..2ec7397 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/react-native-screens/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-rnscreens.jar b/node_modules/react-native-screens/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-rnscreens.jar +new file mode 100644 +index 0000000..15cb0ec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-rnscreens.jar differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-screens/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..8ed1577 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/librnscreens.so +new file mode 100644 +index 0000000..782afa5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/librnscreens.so +new file mode 100644 +index 0000000..59a7cec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-screens/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-screens/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_in.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_in.xml +new file mode 100644 +index 0000000..1767203 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_in.xml +@@ -0,0 +1,37 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_out.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_out.xml +new file mode 100644 +index 0000000..e7dd72b +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_enter_out.xml +@@ -0,0 +1,38 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_in.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_in.xml +new file mode 100644 +index 0000000..949ebb7 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_in.xml +@@ -0,0 +1,38 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_out.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_out.xml +new file mode 100644 +index 0000000..ba4d84d +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim-v33/rns_default_exit_out.xml +@@ -0,0 +1,38 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_in.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_in.xml +new file mode 100644 +index 0000000..4398c7e +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_in.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_out.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_out.xml +new file mode 100644 +index 0000000..84c9175 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_enter_out.xml +@@ -0,0 +1,19 @@ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_in.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_in.xml +new file mode 100644 +index 0000000..6d6fa02 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_in.xml +@@ -0,0 +1,17 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_out.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_out.xml +new file mode 100644 +index 0000000..b20a184 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_default_exit_out.xml +@@ -0,0 +1,18 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_from_bottom.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_from_bottom.xml +new file mode 100644 +index 0000000..c7a8abc +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_from_bottom.xml +@@ -0,0 +1,14 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_in.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_in.xml +new file mode 100644 +index 0000000..c78ea61 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_in.xml +@@ -0,0 +1,7 @@ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_out.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_out.xml +new file mode 100644 +index 0000000..334e63f +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_out.xml +@@ -0,0 +1,7 @@ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_to_bottom.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_to_bottom.xml +new file mode 100644 +index 0000000..2334521 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_fade_to_bottom.xml +@@ -0,0 +1,15 @@ ++ ++ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_close.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_close.xml +new file mode 100644 +index 0000000..5d75e0b +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_close.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_open.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_open.xml +new file mode 100644 +index 0000000..11a8d45 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_background_open.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_close.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_close.xml +new file mode 100644 +index 0000000..2cb6237 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_close.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_open.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_open.xml +new file mode 100644 +index 0000000..394ac66 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_left_foreground_open.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_close.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_close.xml +new file mode 100644 +index 0000000..66a611f +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_close.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_open.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_open.xml +new file mode 100644 +index 0000000..1d92c95 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_background_open.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_close.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_close.xml +new file mode 100644 +index 0000000..1073ae6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_close.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_open.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_open.xml +new file mode 100644 +index 0000000..e687584 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_ios_from_right_foreground_open.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_20.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_20.xml +new file mode 100644 +index 0000000..5cc0d23 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_20.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_250.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_250.xml +new file mode 100644 +index 0000000..bd082a3 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_250.xml +@@ -0,0 +1,7 @@ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_350.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_350.xml +new file mode 100644 +index 0000000..003dcd1 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_350.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_medium.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_medium.xml +new file mode 100644 +index 0000000..560eda6 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_no_animation_medium.xml +@@ -0,0 +1,7 @@ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_bottom.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_bottom.xml +new file mode 100644 +index 0000000..052fe15 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_bottom.xml +@@ -0,0 +1,7 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_left.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_left.xml +new file mode 100644 +index 0000000..939110f +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_left.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_right.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_right.xml +new file mode 100644 +index 0000000..428eb9b +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_in_from_right.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_bottom.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_bottom.xml +new file mode 100644 +index 0000000..6b75d25 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_bottom.xml +@@ -0,0 +1,7 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_left.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_left.xml +new file mode 100644 +index 0000000..400a202 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_left.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_right.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_right.xml +new file mode 100644 +index 0000000..a00332b +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_slide_out_to_right.xml +@@ -0,0 +1,5 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_standard_accelerate_interpolator.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_standard_accelerate_interpolator.xml +new file mode 100644 +index 0000000..60c57e5 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/anim/rns_standard_accelerate_interpolator.xml +@@ -0,0 +1,6 @@ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rns_rounder_top_corners_shape.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rns_rounder_top_corners_shape.xml +new file mode 100644 +index 0000000..238b3c0 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rns_rounder_top_corners_shape.xml +@@ -0,0 +1,8 @@ ++ ++ ++ ++ ++ +diff --git a/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +new file mode 100644 +index 0000000..e8baa1c +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +@@ -0,0 +1,6 @@ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/rnscreens_debug.kotlin_module b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/rnscreens_debug.kotlin_module +new file mode 100644 +index 0000000..54cacd2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/rnscreens_debug.kotlin_module differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.class +new file mode 100644 +index 0000000..caabe8a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.class +new file mode 100644 +index 0000000..119ed8c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.class +new file mode 100644 +index 0000000..5852be6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.class +new file mode 100644 +index 0000000..2866b56 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSBottomTabsScreenManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.class +new file mode 100644 +index 0000000..4767223 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.class +new file mode 100644 +index 0000000..2696cd5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.class +new file mode 100644 +index 0000000..a6454fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.class +new file mode 100644 +index 0000000..8f86314 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.class +new file mode 100644 +index 0000000..a661ea1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.class +new file mode 100644 +index 0000000..af121c0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.class +new file mode 100644 +index 0000000..bbcb628 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.class +new file mode 100644 +index 0000000..58b3599 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.class +new file mode 100644 +index 0000000..702257c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenManagerInterface.class +new file mode 100644 +index 0000000..99424b8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.class +new file mode 100644 +index 0000000..c1d2ee7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.class +new file mode 100644 +index 0000000..4a3afab +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.class +new file mode 100644 +index 0000000..124acdd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.class +new file mode 100644 +index 0000000..7498e82 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.class +new file mode 100644 +index 0000000..fc32f7d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.class +new file mode 100644 +index 0000000..6ae1a37 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.class +new file mode 100644 +index 0000000..ac027b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.class +new file mode 100644 +index 0000000..4202707 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/BuildConfig.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/BuildConfig.class +new file mode 100644 +index 0000000..3c46498 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/BuildConfig.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.class +new file mode 100644 +index 0000000..894b82d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomSearchView.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomSearchView.class +new file mode 100644 +index 0000000..2ecc819 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomSearchView.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.class +new file mode 100644 +index 0000000..3381820 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomToolbar.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomToolbar.class +new file mode 100644 +index 0000000..7069d32 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/CustomToolbar.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.class +new file mode 100644 +index 0000000..0e83e3f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.class +new file mode 100644 +index 0000000..cd1d397 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.class +new file mode 100644 +index 0000000..c12c2f8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledViewGroup.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledViewGroup.class +new file mode 100644 +index 0000000..4165ac8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FabricEnabledViewGroup.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FragmentBackPressOverrider.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FragmentBackPressOverrider.class +new file mode 100644 +index 0000000..967575a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FragmentBackPressOverrider.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FragmentHolder.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FragmentHolder.class +new file mode 100644 +index 0000000..0c52673 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/FragmentHolder.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/InsetsObserverProxy.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/InsetsObserverProxy.class +new file mode 100644 +index 0000000..86f9076 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/InsetsObserverProxy.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardDidHide.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardDidHide.class +new file mode 100644 +index 0000000..b30abc7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardDidHide.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardNotVisible.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardNotVisible.class +new file mode 100644 +index 0000000..1aa6f99 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardNotVisible.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardState.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardState.class +new file mode 100644 +index 0000000..668ab46 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardState.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardVisible.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardVisible.class +new file mode 100644 +index 0000000..9dd8043 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/KeyboardVisible.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ModalScreenViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ModalScreenViewManager$Companion.class +new file mode 100644 +index 0000000..9fe01ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ModalScreenViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ModalScreenViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ModalScreenViewManager.class +new file mode 100644 +index 0000000..67b2cb3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ModalScreenViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeProxy$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeProxy$Companion.class +new file mode 100644 +index 0000000..a36a1e6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeProxy$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeProxy.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeProxy.class +new file mode 100644 +index 0000000..1823779 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeProxy.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeScreensModuleSpec.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeScreensModuleSpec.class +new file mode 100644 +index 0000000..babf292 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/NativeScreensModuleSpec.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.class +new file mode 100644 +index 0000000..d7ff4f4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/RNScreensPackage$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/RNScreensPackage$Companion.class +new file mode 100644 +index 0000000..4a4100f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/RNScreensPackage$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/RNScreensPackage.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/RNScreensPackage.class +new file mode 100644 +index 0000000..2124a5d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/RNScreensPackage.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$ActivityState.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$ActivityState.class +new file mode 100644 +index 0000000..3061503 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$ActivityState.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$Companion.class +new file mode 100644 +index 0000000..91a2a20 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$ReplaceAnimation.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$ReplaceAnimation.class +new file mode 100644 +index 0000000..c577ae2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$ReplaceAnimation.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$StackAnimation.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$StackAnimation.class +new file mode 100644 +index 0000000..9978c70 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$StackAnimation.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$StackPresentation.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$StackPresentation.class +new file mode 100644 +index 0000000..909a48c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$StackPresentation.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$WhenMappings.class +new file mode 100644 +index 0000000..590a839 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$WindowTraits.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$WindowTraits.class +new file mode 100644 +index 0000000..e7b68e9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$WindowTraits.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.class +new file mode 100644 +index 0000000..dee508c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen.class +new file mode 100644 +index 0000000..5302493 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/Screen.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.class +new file mode 100644 +index 0000000..3256904 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainer.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainer.class +new file mode 100644 +index 0000000..69fe2f8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainer.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.class +new file mode 100644 +index 0000000..8b74c99 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainerViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainerViewManager.class +new file mode 100644 +index 0000000..c79ab24 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContainerViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.class +new file mode 100644 +index 0000000..63f00ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapper.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapper.class +new file mode 100644 +index 0000000..5bbe911 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapper.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.class +new file mode 100644 +index 0000000..442bb85 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapperManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapperManager.class +new file mode 100644 +index 0000000..ebd9150 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenContentWrapperManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenEventDispatcher.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenEventDispatcher.class +new file mode 100644 +index 0000000..85a27b4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenEventDispatcher.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$Companion.class +new file mode 100644 +index 0000000..578a336 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.class +new file mode 100644 +index 0000000..7773a18 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.class +new file mode 100644 +index 0000000..614d133 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter.class +new file mode 100644 +index 0000000..a3b0757 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooter.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooterManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooterManager$Companion.class +new file mode 100644 +index 0000000..43a936a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooterManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooterManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooterManager.class +new file mode 100644 +index 0000000..021d91a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFooterManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$Companion.class +new file mode 100644 +index 0000000..2ab57f4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.class +new file mode 100644 +index 0000000..5595943 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.class +new file mode 100644 +index 0000000..be2dbd0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$WhenMappings.class +new file mode 100644 +index 0000000..39d285b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment.class +new file mode 100644 +index 0000000..873a35c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragmentWrapper.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragmentWrapper.class +new file mode 100644 +index 0000000..b507eca +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenFragmentWrapper.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenKt.class +new file mode 100644 +index 0000000..088f721 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenModalFragment$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenModalFragment$Companion.class +new file mode 100644 +index 0000000..50f1fda +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenModalFragment$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenModalFragment.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenModalFragment.class +new file mode 100644 +index 0000000..0901a15 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenModalFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$Companion.class +new file mode 100644 +index 0000000..1a1b492 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$DrawingOp.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$DrawingOp.class +new file mode 100644 +index 0000000..07184ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$DrawingOp.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$WhenMappings.class +new file mode 100644 +index 0000000..6b2606c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack.class +new file mode 100644 +index 0000000..8bde1a1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStack.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.class +new file mode 100644 +index 0000000..9cefc8e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragment.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragment.class +new file mode 100644 +index 0000000..60e6b91 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragmentWrapper.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragmentWrapper.class +new file mode 100644 +index 0000000..fa04eca +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackFragmentWrapper.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.class +new file mode 100644 +index 0000000..65c7121 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.class +new file mode 100644 +index 0000000..bc93e82 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.class +new file mode 100644 +index 0000000..d32393e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig.class +new file mode 100644 +index 0000000..175d118 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfig.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.class +new file mode 100644 +index 0000000..53d599b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.class +new file mode 100644 +index 0000000..67e2ba8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.class +new file mode 100644 +index 0000000..f34a90a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.class +new file mode 100644 +index 0000000..e97e228 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubview.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubview.class +new file mode 100644 +index 0000000..6984c9b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubview.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.class +new file mode 100644 +index 0000000..65c4478 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.class +new file mode 100644 +index 0000000..482b4d4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackViewManager$Companion.class +new file mode 100644 +index 0000000..fa0d893 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackViewManager.class +new file mode 100644 +index 0000000..e034c28 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenStackViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenViewManager$Companion.class +new file mode 100644 +index 0000000..ef1a5fb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenViewManager.class +new file mode 100644 +index 0000000..d443a32 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.class +new file mode 100644 +index 0000000..8d8098f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.class +new file mode 100644 +index 0000000..ae28143 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits.class +new file mode 100644 +index 0000000..a511825 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreenWindowTraits.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensModule$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensModule$Companion.class +new file mode 100644 +index 0000000..7e5a147 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensModule$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensModule.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensModule.class +new file mode 100644 +index 0000000..c57b7f5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensModule.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensShadowNode.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensShadowNode.class +new file mode 100644 +index 0000000..0a0ae33 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ScreensShadowNode.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarManager$Companion.class +new file mode 100644 +index 0000000..fc817e7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarManager.class +new file mode 100644 +index 0000000..c07f1f8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.class +new file mode 100644 +index 0000000..31ebfc0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.class +new file mode 100644 +index 0000000..44d0de9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.class +new file mode 100644 +index 0000000..8bfea61 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.class +new file mode 100644 +index 0000000..1f4cbc6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.class +new file mode 100644 +index 0000000..006366a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.class +new file mode 100644 +index 0000000..ef7eeb5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.class +new file mode 100644 +index 0000000..7c281cc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.class +new file mode 100644 +index 0000000..8cb01b8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView.class +new file mode 100644 +index 0000000..9f3318c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchBarView.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchViewFormatter.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchViewFormatter.class +new file mode 100644 +index 0000000..7e068a8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/SearchViewFormatter.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.class +new file mode 100644 +index 0000000..b06a16c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.class +new file mode 100644 +index 0000000..ba45302 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.class +new file mode 100644 +index 0000000..5e49d4c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.class +new file mode 100644 +index 0000000..f7164b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.class +new file mode 100644 +index 0000000..537275c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.class +new file mode 100644 +index 0000000..8dd0d16 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingView.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingView.class +new file mode 100644 +index 0000000..7a0e3d7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingView.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.class +new file mode 100644 +index 0000000..e4cbde4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.class +new file mode 100644 +index 0000000..766b358 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.class +new file mode 100644 +index 0000000..9d40887 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.class +new file mode 100644 +index 0000000..91bd502 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.class +new file mode 100644 +index 0000000..9e9d778 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.class +new file mode 100644 +index 0000000..4e448cf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.class +new file mode 100644 +index 0000000..5ba613c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.class +new file mode 100644 +index 0000000..ad691f2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate.class +new file mode 100644 +index 0000000..aca79fa +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetUtils.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetUtils.class +new file mode 100644 +index 0000000..1e0ed09 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetUtils.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.class +new file mode 100644 +index 0000000..19345c5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.class +new file mode 100644 +index 0000000..8347907 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderAttachedEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderAttachedEvent.class +new file mode 100644 +index 0000000..52141fd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderAttachedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.class +new file mode 100644 +index 0000000..7bae101 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.class +new file mode 100644 +index 0000000..9ff05f3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.class +new file mode 100644 +index 0000000..d3c1d42 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderDetachedEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderDetachedEvent.class +new file mode 100644 +index 0000000..77199c0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderDetachedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.class +new file mode 100644 +index 0000000..f2d8ad1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.class +new file mode 100644 +index 0000000..7e5419b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.class +new file mode 100644 +index 0000000..7bf3aec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.class +new file mode 100644 +index 0000000..819d651 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.class +new file mode 100644 +index 0000000..f12c53f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.class +new file mode 100644 +index 0000000..e0aa2b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate.class +new file mode 100644 +index 0000000..28bbd6b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAnimationDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.class +new file mode 100644 +index 0000000..720654f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAppearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAppearEvent.class +new file mode 100644 +index 0000000..62f7a06 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.class +new file mode 100644 +index 0000000..6199348 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDisappearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDisappearEvent.class +new file mode 100644 +index 0000000..30c436f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.class +new file mode 100644 +index 0000000..9fb2df7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDismissedEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDismissedEvent.class +new file mode 100644 +index 0000000..a3d62a8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenDismissedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenEventEmitter.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenEventEmitter.class +new file mode 100644 +index 0000000..bcf0ebf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.class +new file mode 100644 +index 0000000..66d56a0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.class +new file mode 100644 +index 0000000..885fac9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.class +new file mode 100644 +index 0000000..36b3408 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillAppearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillAppearEvent.class +new file mode 100644 +index 0000000..9dd0d78 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.class +new file mode 100644 +index 0000000..4cb1a4c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.class +new file mode 100644 +index 0000000..3fb17cf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.class +new file mode 100644 +index 0000000..889bd78 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarBlurEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarBlurEvent.class +new file mode 100644 +index 0000000..5c4ef39 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarBlurEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.class +new file mode 100644 +index 0000000..c926755 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.class +new file mode 100644 +index 0000000..7fe3dc9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.class +new file mode 100644 +index 0000000..025a9ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarCloseEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarCloseEvent.class +new file mode 100644 +index 0000000..f3d8246 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarCloseEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.class +new file mode 100644 +index 0000000..9b2188d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarFocusEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarFocusEvent.class +new file mode 100644 +index 0000000..08b2600 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarFocusEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.class +new file mode 100644 +index 0000000..8fd4daf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarOpenEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarOpenEvent.class +new file mode 100644 +index 0000000..3979f64 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarOpenEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.class +new file mode 100644 +index 0000000..b07e8d6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.class +new file mode 100644 +index 0000000..304e984 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.class +new file mode 100644 +index 0000000..41eb8c7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SheetDetentChangedEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SheetDetentChangedEvent.class +new file mode 100644 +index 0000000..7051f84 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/SheetDetentChangedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.class +new file mode 100644 +index 0000000..6a60b34 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.class +new file mode 100644 +index 0000000..c1a0b4d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/FragmentExtKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/FragmentExtKt.class +new file mode 100644 +index 0000000..2707e3e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/FragmentExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/NumericExtKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/NumericExtKt.class +new file mode 100644 +index 0000000..bb1f1e8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/NumericExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/ViewExtKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/ViewExtKt.class +new file mode 100644 +index 0000000..42da571 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/ext/ViewExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.class +new file mode 100644 +index 0000000..58b5202 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.class +new file mode 100644 +index 0000000..0ff3391 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.class +new file mode 100644 +index 0000000..aa31da7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.class +new file mode 100644 +index 0000000..294b4f6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/FragmentProviding.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/FragmentProviding.class +new file mode 100644 +index 0000000..1248097 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/FragmentProviding.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.class +new file mode 100644 +index 0000000..c86f801 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.class +new file mode 100644 +index 0000000..25509e1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.class +new file mode 100644 +index 0000000..ac41998 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.class +new file mode 100644 +index 0000000..b170489 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.class +new file mode 100644 +index 0000000..36f5836 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.class +new file mode 100644 +index 0000000..9add584 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.class +new file mode 100644 +index 0000000..a42197b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.class +new file mode 100644 +index 0000000..fb01b27 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.class +new file mode 100644 +index 0000000..a13e65b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.class +new file mode 100644 +index 0000000..01a15a2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.class +new file mode 100644 +index 0000000..482e168 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.class +new file mode 100644 +index 0000000..b2d2d64 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.class +new file mode 100644 +index 0000000..980e1dc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.class +new file mode 100644 +index 0000000..59927d6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen.class +new file mode 100644 +index 0000000..a60147c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreen.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.class +new file mode 100644 +index 0000000..5b3dce9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.class +new file mode 100644 +index 0000000..e4cd0b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.class +new file mode 100644 +index 0000000..5170003 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.class +new file mode 100644 +index 0000000..9cf6f08 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.class +new file mode 100644 +index 0000000..4139329 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.class +new file mode 100644 +index 0000000..8db9e51 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.class +new file mode 100644 +index 0000000..d40b2df +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.class +new file mode 100644 +index 0000000..dd970b5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.class +new file mode 100644 +index 0000000..ac8ad4a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.class +new file mode 100644 +index 0000000..370d86b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.class +new file mode 100644 +index 0000000..c775f43 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.class +new file mode 100644 +index 0000000..4081f71 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.class +new file mode 100644 +index 0000000..c969fd4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.class +new file mode 100644 +index 0000000..88b98c2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.class +new file mode 100644 +index 0000000..4cc0ae8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.class +new file mode 100644 +index 0000000..419980d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.class +new file mode 100644 +index 0000000..6003717 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.class +new file mode 100644 +index 0000000..2af9ba9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.class +new file mode 100644 +index 0000000..2f14829 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.class +new file mode 100644 +index 0000000..e610dbe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.class +new file mode 100644 +index 0000000..37bd81b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.class +new file mode 100644 +index 0000000..b0e6ef2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.class +new file mode 100644 +index 0000000..f649a4d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost.class +new file mode 100644 +index 0000000..116123e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHost.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.class +new file mode 100644 +index 0000000..f5cfc50 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.class +new file mode 100644 +index 0000000..41bfb28 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.class +new file mode 100644 +index 0000000..000a528 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.class +new file mode 100644 +index 0000000..9b3c415 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.class +new file mode 100644 +index 0000000..3798618 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.class +new file mode 100644 +index 0000000..3ad48b4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.class +new file mode 100644 +index 0000000..7a6c6ac +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.class +new file mode 100644 +index 0000000..ed3cd8e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.class +new file mode 100644 +index 0000000..45d154d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.class +new file mode 100644 +index 0000000..7d73833 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.class +new file mode 100644 +index 0000000..64b7a75 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.class +new file mode 100644 +index 0000000..4750ca1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.class +new file mode 100644 +index 0000000..3083d45 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.class +new file mode 100644 +index 0000000..d0ecc39 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.class +new file mode 100644 +index 0000000..5f1ad8c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.class +new file mode 100644 +index 0000000..94b0bab +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.class +new file mode 100644 +index 0000000..d8c8dba +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.class +new file mode 100644 +index 0000000..7cb462d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.class +new file mode 100644 +index 0000000..7644ffb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.class +new file mode 100644 +index 0000000..bf57c23 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.class +new file mode 100644 +index 0000000..0226cc1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.class +new file mode 100644 +index 0000000..a9037b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/EdgeInsets.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/EdgeInsets.class +new file mode 100644 +index 0000000..484d66d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/EdgeInsets.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/InsetType.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/InsetType.class +new file mode 100644 +index 0000000..c84594b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/InsetType.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaProvider.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaProvider.class +new file mode 100644 +index 0000000..5759e88 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaProvider.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.class +new file mode 100644 +index 0000000..4cde485 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaView.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaView.class +new file mode 100644 +index 0000000..8eb6ccc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaView.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewKt.class +new file mode 100644 +index 0000000..5bdad12 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.class +new file mode 100644 +index 0000000..0cceb78 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewManager.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewManager.class +new file mode 100644 +index 0000000..2a74dc4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/SafeAreaViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.class +new file mode 100644 +index 0000000..524f86e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.class +new file mode 100644 +index 0000000..b16b0f9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.class +new file mode 100644 +index 0000000..56c5a3f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.class +new file mode 100644 +index 0000000..92206a7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/anim/ScreensAnimation.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/anim/ScreensAnimation.class +new file mode 100644 +index 0000000..23c9c01 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/anim/ScreensAnimation.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.class +new file mode 100644 +index 0000000..02ce3b4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.class +new file mode 100644 +index 0000000..62483cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ReverseFromIndex.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ReverseFromIndex.class +new file mode 100644 +index 0000000..0ba72a3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ReverseFromIndex.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ReverseOrder.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ReverseOrder.class +new file mode 100644 +index 0000000..f0f135f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ReverseOrder.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.class +new file mode 100644 +index 0000000..dd70ee8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.class +new file mode 100644 +index 0000000..7ab8bff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.class +new file mode 100644 +index 0000000..0ffa520 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.class +new file mode 100644 +index 0000000..6f3ce87 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheEntry$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheEntry$Companion.class +new file mode 100644 +index 0000000..bc1604f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheEntry$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheEntry.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheEntry.class +new file mode 100644 +index 0000000..03289ff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheEntry.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheKey.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheKey.class +new file mode 100644 +index 0000000..a16f823 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/CacheKey.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/DeviceUtils.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/DeviceUtils.class +new file mode 100644 +index 0000000..c687d8d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/DeviceUtils.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.class +new file mode 100644 +index 0000000..4e037ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.class +new file mode 100644 +index 0000000..503ef6f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/InsetsKtKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/InsetsKtKt.class +new file mode 100644 +index 0000000..ba527f1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/InsetsKtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/PaddingBundle.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/PaddingBundle.class +new file mode 100644 +index 0000000..8504643 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/PaddingBundle.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/RNSLog.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/RNSLog.class +new file mode 100644 +index 0000000..045c6cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/RNSLog.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.class +new file mode 100644 +index 0000000..8a16cb1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.class +new file mode 100644 +index 0000000..3fdd021 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.class b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.class +new file mode 100644 +index 0000000..b2c398f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.class differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..e05d338 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/librnscreens.so +new file mode 100644 +index 0000000..9133128 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/librnscreens.so b/node_modules/react-native-screens/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/librnscreens.so +new file mode 100644 +index 0000000..577058e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/librnscreens.so differ +diff --git a/node_modules/react-native-screens/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-screens/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..f73abd4 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1,30 @@ ++com.swmansion.rnscreens ++anim rns_default_enter_in ++anim rns_default_enter_out ++anim rns_default_exit_in ++anim rns_default_exit_out ++anim rns_fade_from_bottom ++anim rns_fade_in ++anim rns_fade_out ++anim rns_fade_to_bottom ++anim rns_ios_from_left_background_close ++anim rns_ios_from_left_background_open ++anim rns_ios_from_left_foreground_close ++anim rns_ios_from_left_foreground_open ++anim rns_ios_from_right_background_close ++anim rns_ios_from_right_background_open ++anim rns_ios_from_right_foreground_close ++anim rns_ios_from_right_foreground_open ++anim rns_no_animation_20 ++anim rns_no_animation_250 ++anim rns_no_animation_350 ++anim rns_no_animation_medium ++anim rns_slide_in_from_bottom ++anim rns_slide_in_from_left ++anim rns_slide_in_from_right ++anim rns_slide_out_to_bottom ++anim rns_slide_out_to_left ++anim rns_slide_out_to_right ++anim rns_standard_accelerate_interpolator ++drawable rns_rounder_top_corners_shape ++style custom +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..1adf402 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..9179e49 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..23f9794 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..6989e7f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values +new file mode 100644 +index 0000000..b3f68db +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..90842b8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +new file mode 100644 +index 0000000..5d04837 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +@@ -0,0 +1 @@ ++2 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..5541c89 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..989dbbc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..37e8eec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +new file mode 100644 +index 0000000..e135079 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +new file mode 100644 +index 0000000..70553a3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +new file mode 100644 +index 0000000..ebcd53e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +new file mode 100644 +index 0000000..16653ff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +new file mode 100644 +index 0000000..816fc97 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +new file mode 100644 +index 0000000..37e8eec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..e135079 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +new file mode 100644 +index 0000000..70553a3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values +new file mode 100644 +index 0000000..91d1a1e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +new file mode 100644 +index 0000000..c1cfd7a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s +new file mode 100644 +index 0000000..762c720 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s +@@ -0,0 +1 @@ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +new file mode 100644 +index 0000000..16653ff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +new file mode 100644 +index 0000000..4659c82 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +new file mode 100644 +index 0000000..d0101cd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +new file mode 100644 +index 0000000..0fcf93d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +new file mode 100644 +index 0000000..6f80c14 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +new file mode 100644 +index 0000000..f91a423 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +new file mode 100644 +index 0000000..f2a9509 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +new file mode 100644 +index 0000000..ba287a8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +new file mode 100644 +index 0000000..bbb2a4c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..8dd6296 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +new file mode 100644 +index 0000000..dd78390 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values +new file mode 100644 +index 0000000..97b8701 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +new file mode 100644 +index 0000000..c77a0e9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +new file mode 100644 +index 0000000..cdc88f3 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +@@ -0,0 +1 @@ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +new file mode 100644 +index 0000000..9499673 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab +new file mode 100644 +index 0000000..3e07545 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream +new file mode 100644 +index 0000000..6a20bca +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +new file mode 100644 +index 0000000..155ceac +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len +new file mode 100644 +index 0000000..9911af5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at +new file mode 100644 +index 0000000..29fb305 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i +new file mode 100644 +index 0000000..af30d79 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +new file mode 100644 +index 0000000..76a813b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +new file mode 100644 +index 0000000..1aa271e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +new file mode 100644 +index 0000000..b2f5d2c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +new file mode 100644 +index 0000000..71c6511 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values +new file mode 100644 +index 0000000..c8c90b8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +new file mode 100644 +index 0000000..45fa2c7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +new file mode 100644 +index 0000000..ad5ed4a +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +@@ -0,0 +1 @@ ++ط +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +new file mode 100644 +index 0000000..0c5d9d9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +new file mode 100644 +index 0000000..6048b27 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +new file mode 100644 +index 0000000..9179e49 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +new file mode 100644 +index 0000000..23f9794 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +new file mode 100644 +index 0000000..6989e7f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values +new file mode 100644 +index 0000000..5c97031 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +new file mode 100644 +index 0000000..ac1ba9f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s +new file mode 100644 +index 0000000..cbc2fe9 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s +@@ -0,0 +1 @@ ++O +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +new file mode 100644 +index 0000000..5541c89 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +new file mode 100644 +index 0000000..b07b2fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +new file mode 100644 +index 0000000..94f89fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +new file mode 100644 +index 0000000..095025f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +new file mode 100644 +index 0000000..f6d81fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +new file mode 100644 +index 0000000..cae12fe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +new file mode 100644 +index 0000000..5441e9f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +new file mode 100644 +index 0000000..39a85aa +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +new file mode 100644 +index 0000000..457b9bb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +new file mode 100644 +index 0000000..e18134f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +new file mode 100644 +index 0000000..6989e7f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +new file mode 100644 +index 0000000..ca77dc5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +new file mode 100644 +index 0000000..917d027 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +new file mode 100644 +index 0000000..17e8fef +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +@@ -0,0 +1,2 @@ ++115 ++0 +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +new file mode 100644 +index 0000000..761f1cc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +new file mode 100644 +index 0000000..9179e49 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +new file mode 100644 +index 0000000..23f9794 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +new file mode 100644 +index 0000000..6989e7f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +new file mode 100644 +index 0000000..5e7a17c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +new file mode 100644 +index 0000000..5541c89 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +new file mode 100644 +index 0000000..4d1b2eb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +new file mode 100644 +index 0000000..35ad8c6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +new file mode 100644 +index 0000000..bdf0f19 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +new file mode 100644 +index 0000000..6989e7f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +new file mode 100644 +index 0000000..d2905c5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +new file mode 100644 +index 0000000..c32228e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +new file mode 100644 +index 0000000..70fa698 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +new file mode 100644 +index 0000000..21caf43 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +new file mode 100644 +index 0000000..3a9de10 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +new file mode 100644 +index 0000000..b82e4d7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values +new file mode 100644 +index 0000000..e51016f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +new file mode 100644 +index 0000000..bb19e7d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +new file mode 100644 +index 0000000..6ac970e +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +@@ -0,0 +1 @@ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +new file mode 100644 +index 0000000..a513910 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +new file mode 100644 +index 0000000..4424406 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +new file mode 100644 +index 0000000..2b53b7f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ +diff --git a/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +new file mode 100644 +index 0000000..3166ac3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ +diff --git a/node_modules/react-native-screens/android/build/outputs/aar/rnscreens-debug.aar b/node_modules/react-native-screens/android/build/outputs/aar/rnscreens-debug.aar +new file mode 100644 +index 0000000..b86421c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/outputs/aar/rnscreens-debug.aar differ +diff --git a/node_modules/react-native-screens/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-screens/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..08c5bd3 +--- /dev/null ++++ b/node_modules/react-native-screens/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,16 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml:2:1-4:12 ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml:2:1-4:12 ++ package ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml:2:11-69 ++uses-sdk ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-screens/android/src/main/AndroidManifest.xml +diff --git a/node_modules/react-native-screens/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-screens/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..73ea351 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/META-INF/rnscreens_debug.kotlin_module b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/META-INF/rnscreens_debug.kotlin_module +new file mode 100644 +index 0000000..54cacd2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/META-INF/rnscreens_debug.kotlin_module differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.class +new file mode 100644 +index 0000000..894b82d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomSearchView$onBackPressedCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomSearchView.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomSearchView.class +new file mode 100644 +index 0000000..2ecc819 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomSearchView.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.class +new file mode 100644 +index 0000000..3381820 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomToolbar$layoutCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomToolbar.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomToolbar.class +new file mode 100644 +index 0000000..7069d32 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/CustomToolbar.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.class +new file mode 100644 +index 0000000..0e83e3f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.class +new file mode 100644 +index 0000000..cd1d397 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.class +new file mode 100644 +index 0000000..c12c2f8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledViewGroup.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledViewGroup.class +new file mode 100644 +index 0000000..4165ac8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FabricEnabledViewGroup.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FragmentBackPressOverrider.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FragmentBackPressOverrider.class +new file mode 100644 +index 0000000..967575a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FragmentBackPressOverrider.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FragmentHolder.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FragmentHolder.class +new file mode 100644 +index 0000000..0c52673 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/FragmentHolder.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/InsetsObserverProxy.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/InsetsObserverProxy.class +new file mode 100644 +index 0000000..86f9076 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/InsetsObserverProxy.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardDidHide.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardDidHide.class +new file mode 100644 +index 0000000..b30abc7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardDidHide.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardNotVisible.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardNotVisible.class +new file mode 100644 +index 0000000..1aa6f99 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardNotVisible.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardState.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardState.class +new file mode 100644 +index 0000000..668ab46 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardState.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardVisible.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardVisible.class +new file mode 100644 +index 0000000..9dd8043 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/KeyboardVisible.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ModalScreenViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ModalScreenViewManager$Companion.class +new file mode 100644 +index 0000000..9fe01ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ModalScreenViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ModalScreenViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ModalScreenViewManager.class +new file mode 100644 +index 0000000..67b2cb3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ModalScreenViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/NativeProxy$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/NativeProxy$Companion.class +new file mode 100644 +index 0000000..a36a1e6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/NativeProxy$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/NativeProxy.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/NativeProxy.class +new file mode 100644 +index 0000000..1823779 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/NativeProxy.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.class +new file mode 100644 +index 0000000..d7ff4f4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/PointerEventsBoxNoneImpl.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/RNScreensPackage$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/RNScreensPackage$Companion.class +new file mode 100644 +index 0000000..4a4100f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/RNScreensPackage$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/RNScreensPackage.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/RNScreensPackage.class +new file mode 100644 +index 0000000..2124a5d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/RNScreensPackage.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$ActivityState.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$ActivityState.class +new file mode 100644 +index 0000000..3061503 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$ActivityState.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$Companion.class +new file mode 100644 +index 0000000..91a2a20 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$ReplaceAnimation.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$ReplaceAnimation.class +new file mode 100644 +index 0000000..c577ae2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$ReplaceAnimation.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$StackAnimation.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$StackAnimation.class +new file mode 100644 +index 0000000..9978c70 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$StackAnimation.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$StackPresentation.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$StackPresentation.class +new file mode 100644 +index 0000000..909a48c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$StackPresentation.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$WhenMappings.class +new file mode 100644 +index 0000000..590a839 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$WindowTraits.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$WindowTraits.class +new file mode 100644 +index 0000000..e7b68e9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$WindowTraits.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.class +new file mode 100644 +index 0000000..dee508c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen$updateScreenSizePaper$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen.class +new file mode 100644 +index 0000000..5302493 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/Screen.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.class +new file mode 100644 +index 0000000..3256904 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainer$layoutCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainer.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainer.class +new file mode 100644 +index 0000000..69fe2f8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainer.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.class +new file mode 100644 +index 0000000..8b74c99 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainerViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainerViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainerViewManager.class +new file mode 100644 +index 0000000..c79ab24 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContainerViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.class +new file mode 100644 +index 0000000..63f00ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapper$OnLayoutCallback.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapper.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapper.class +new file mode 100644 +index 0000000..5bbe911 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapper.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.class +new file mode 100644 +index 0000000..442bb85 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapperManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapperManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapperManager.class +new file mode 100644 +index 0000000..ebd9150 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenContentWrapperManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenEventDispatcher.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenEventDispatcher.class +new file mode 100644 +index 0000000..85a27b4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenEventDispatcher.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$Companion.class +new file mode 100644 +index 0000000..578a336 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.class +new file mode 100644 +index 0000000..7773a18 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$footerCallback$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.class +new file mode 100644 +index 0000000..614d133 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter$insetsAnimation$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter.class +new file mode 100644 +index 0000000..a3b0757 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooter.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooterManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooterManager$Companion.class +new file mode 100644 +index 0000000..43a936a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooterManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooterManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooterManager.class +new file mode 100644 +index 0000000..021d91a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFooterManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$Companion.class +new file mode 100644 +index 0000000..2ab57f4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.class +new file mode 100644 +index 0000000..5595943 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$ScreenLifecycleEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.class +new file mode 100644 +index 0000000..be2dbd0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$ScreensFrameLayout.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$WhenMappings.class +new file mode 100644 +index 0000000..39d285b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment.class +new file mode 100644 +index 0000000..873a35c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragmentWrapper.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragmentWrapper.class +new file mode 100644 +index 0000000..b507eca +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenFragmentWrapper.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenKt.class +new file mode 100644 +index 0000000..088f721 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenModalFragment$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenModalFragment$Companion.class +new file mode 100644 +index 0000000..50f1fda +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenModalFragment$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenModalFragment.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenModalFragment.class +new file mode 100644 +index 0000000..0901a15 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenModalFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$Companion.class +new file mode 100644 +index 0000000..1a1b492 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$DrawingOp.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$DrawingOp.class +new file mode 100644 +index 0000000..07184ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$DrawingOp.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$WhenMappings.class +new file mode 100644 +index 0000000..6b2606c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack.class +new file mode 100644 +index 0000000..8bde1a1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStack.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.class +new file mode 100644 +index 0000000..9cefc8e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragment$onCreateView$5.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragment.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragment.class +new file mode 100644 +index 0000000..60e6b91 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragmentWrapper.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragmentWrapper.class +new file mode 100644 +index 0000000..fa04eca +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackFragmentWrapper.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.class +new file mode 100644 +index 0000000..65c7121 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.class +new file mode 100644 +index 0000000..bc93e82 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$DebugMenuToolbar.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.class +new file mode 100644 +index 0000000..d32393e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig.class +new file mode 100644 +index 0000000..175d118 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfig.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.class +new file mode 100644 +index 0000000..53d599b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.class +new file mode 100644 +index 0000000..67e2ba8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.class +new file mode 100644 +index 0000000..f34a90a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.class +new file mode 100644 +index 0000000..e97e228 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubview$Type.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubview.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubview.class +new file mode 100644 +index 0000000..6984c9b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubview.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.class +new file mode 100644 +index 0000000..65c4478 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.class +new file mode 100644 +index 0000000..482b4d4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackViewManager$Companion.class +new file mode 100644 +index 0000000..fa0d893 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackViewManager.class +new file mode 100644 +index 0000000..e034c28 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenStackViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenViewManager$Companion.class +new file mode 100644 +index 0000000..ef1a5fb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenViewManager.class +new file mode 100644 +index 0000000..d443a32 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.class +new file mode 100644 +index 0000000..8d8098f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.class +new file mode 100644 +index 0000000..ae28143 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits$windowInsetsListener$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits.class +new file mode 100644 +index 0000000..a511825 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreenWindowTraits.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensModule$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensModule$Companion.class +new file mode 100644 +index 0000000..7e5a147 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensModule$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensModule.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensModule.class +new file mode 100644 +index 0000000..c57b7f5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensModule.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensShadowNode.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensShadowNode.class +new file mode 100644 +index 0000000..0a0ae33 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ScreensShadowNode.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarManager$Companion.class +new file mode 100644 +index 0000000..fc817e7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarManager.class +new file mode 100644 +index 0000000..c07f1f8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.class +new file mode 100644 +index 0000000..31ebfc0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarAutoCapitalize.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.class +new file mode 100644 +index 0000000..44d0de9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$EMAIL.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.class +new file mode 100644 +index 0000000..8bfea61 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$NUMBER.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.class +new file mode 100644 +index 0000000..1f4cbc6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$PHONE.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.class +new file mode 100644 +index 0000000..006366a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.class +new file mode 100644 +index 0000000..ef7eeb5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes$TEXT.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.class +new file mode 100644 +index 0000000..7c281cc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$SearchBarInputTypes.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.class +new file mode 100644 +index 0000000..8cb01b8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView$setSearchViewListeners$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView.class +new file mode 100644 +index 0000000..9f3318c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchBarView.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchViewFormatter.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchViewFormatter.class +new file mode 100644 +index 0000000..7e068a8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/SearchViewFormatter.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.class +new file mode 100644 +index 0000000..b06a16c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetBehaviorExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.class +new file mode 100644 +index 0000000..ba45302 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.class +new file mode 100644 +index 0000000..5e49d4c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogRootView.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.class +new file mode 100644 +index 0000000..f7164b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.class +new file mode 100644 +index 0000000..537275c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/BottomSheetDialogScreen.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.class +new file mode 100644 +index 0000000..8dd0d16 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingView$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingView.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingView.class +new file mode 100644 +index 0000000..7a0e3d7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingView.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.class +new file mode 100644 +index 0000000..e4cbde4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager$AnimateDimmingViewCallback.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.class +new file mode 100644 +index 0000000..766b358 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.class +new file mode 100644 +index 0000000..9d40887 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsImpl.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.class +new file mode 100644 +index 0000000..91bd502 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/DimmingViewPointerEventsProxy.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.class +new file mode 100644 +index 0000000..9e9d778 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.class +new file mode 100644 +index 0000000..4e448cf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$KeyboardHandler.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.class +new file mode 100644 +index 0000000..5ba613c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$SheetStateObserver.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.class +new file mode 100644 +index 0000000..ad691f2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate.class +new file mode 100644 +index 0000000..aca79fa +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetUtils.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetUtils.class +new file mode 100644 +index 0000000..1e0ed09 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetUtils.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.class +new file mode 100644 +index 0000000..19345c5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/bottomsheet/SheetUtilsKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.class +new file mode 100644 +index 0000000..8347907 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderAttachedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderAttachedEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderAttachedEvent.class +new file mode 100644 +index 0000000..52141fd +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderAttachedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.class +new file mode 100644 +index 0000000..7bae101 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.class +new file mode 100644 +index 0000000..9ff05f3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderBackButtonClickedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.class +new file mode 100644 +index 0000000..d3c1d42 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderDetachedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderDetachedEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderDetachedEvent.class +new file mode 100644 +index 0000000..77199c0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderDetachedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.class +new file mode 100644 +index 0000000..f2d8ad1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.class +new file mode 100644 +index 0000000..7e5419b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/HeaderHeightChangeEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.class +new file mode 100644 +index 0000000..7bf3aec +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$AnimationType.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.class +new file mode 100644 +index 0000000..819d651 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.class +new file mode 100644 +index 0000000..f12c53f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$LifecycleState.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.class +new file mode 100644 +index 0000000..e0aa2b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate.class +new file mode 100644 +index 0000000..28bbd6b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAnimationDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.class +new file mode 100644 +index 0000000..720654f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAppearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAppearEvent.class +new file mode 100644 +index 0000000..62f7a06 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.class +new file mode 100644 +index 0000000..6199348 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDisappearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDisappearEvent.class +new file mode 100644 +index 0000000..30c436f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.class +new file mode 100644 +index 0000000..9fb2df7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDismissedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDismissedEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDismissedEvent.class +new file mode 100644 +index 0000000..a3d62a8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenDismissedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenEventEmitter.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenEventEmitter.class +new file mode 100644 +index 0000000..bcf0ebf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.class +new file mode 100644 +index 0000000..66d56a0 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.class +new file mode 100644 +index 0000000..885fac9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenTransitionProgressEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.class +new file mode 100644 +index 0000000..36b3408 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillAppearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillAppearEvent.class +new file mode 100644 +index 0000000..9dd0d78 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.class +new file mode 100644 +index 0000000..4cb1a4c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.class +new file mode 100644 +index 0000000..3fb17cf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/ScreenWillDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.class +new file mode 100644 +index 0000000..889bd78 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarBlurEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarBlurEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarBlurEvent.class +new file mode 100644 +index 0000000..5c4ef39 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarBlurEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.class +new file mode 100644 +index 0000000..c926755 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.class +new file mode 100644 +index 0000000..7fe3dc9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarChangeTextEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.class +new file mode 100644 +index 0000000..025a9ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarCloseEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarCloseEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarCloseEvent.class +new file mode 100644 +index 0000000..f3d8246 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarCloseEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.class +new file mode 100644 +index 0000000..9b2188d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarFocusEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarFocusEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarFocusEvent.class +new file mode 100644 +index 0000000..08b2600 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarFocusEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.class +new file mode 100644 +index 0000000..8fd4daf +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarOpenEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarOpenEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarOpenEvent.class +new file mode 100644 +index 0000000..3979f64 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarOpenEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.class +new file mode 100644 +index 0000000..b07e8d6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.class +new file mode 100644 +index 0000000..304e984 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SearchBarSearchButtonPressEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.class +new file mode 100644 +index 0000000..41eb8c7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SheetDetentChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SheetDetentChangedEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SheetDetentChangedEvent.class +new file mode 100644 +index 0000000..7051f84 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/SheetDetentChangedEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.class +new file mode 100644 +index 0000000..6a60b34 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.class +new file mode 100644 +index 0000000..c1a0b4d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/events/StackFinishTransitioningEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/FragmentExtKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/FragmentExtKt.class +new file mode 100644 +index 0000000..2707e3e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/FragmentExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/NumericExtKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/NumericExtKt.class +new file mode 100644 +index 0000000..bb1f1e8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/NumericExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/ViewExtKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/ViewExtKt.class +new file mode 100644 +index 0000000..42da571 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/ext/ViewExtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.class +new file mode 100644 +index 0000000..58b5202 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/fragment/restoration/AutoRemovingFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.class +new file mode 100644 +index 0000000..0ff3391 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/fragment/restoration/RNScreensFragmentFactory.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.class +new file mode 100644 +index 0000000..aa31da7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.class +new file mode 100644 +index 0000000..294b4f6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/BaseEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/FragmentProviding.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/FragmentProviding.class +new file mode 100644 +index 0000000..1248097 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/FragmentProviding.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.class +new file mode 100644 +index 0000000..c86f801 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/common/NamingAwareEventType.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.class +new file mode 100644 +index 0000000..25509e1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/EventHelpersKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.class +new file mode 100644 +index 0000000..ac41998 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/FragmentManagerHelper.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.class +new file mode 100644 +index 0000000..b170489 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/NewArchAwareViewIdGenerator.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.class +new file mode 100644 +index 0000000..36f5836 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/SystemDrawableKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.class +new file mode 100644 +index 0000000..9add584 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/ViewIdGenerator.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.class +new file mode 100644 +index 0000000..a42197b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/helpers/ViewIdProviding.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.class +new file mode 100644 +index 0000000..fb01b27 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.class +new file mode 100644 +index 0000000..a13e65b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.class +new file mode 100644 +index 0000000..01a15a2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$2.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.class +new file mode 100644 +index 0000000..482e168 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$3.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.class +new file mode 100644 +index 0000000..b2d2d64 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$4.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.class +new file mode 100644 +index 0000000..980e1dc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$5.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.class +new file mode 100644 +index 0000000..59927d6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen$special$$inlined$observable$6.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen.class +new file mode 100644 +index 0000000..a60147c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreen.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.class +new file mode 100644 +index 0000000..5b3dce9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenDelegate.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.class +new file mode 100644 +index 0000000..e4cd0b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.class +new file mode 100644 +index 0000000..5170003 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.class +new file mode 100644 +index 0000000..9cf6f08 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenEventEmitterKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.class +new file mode 100644 +index 0000000..4139329 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenFragment.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.class +new file mode 100644 +index 0000000..8db9e51 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.class +new file mode 100644 +index 0000000..d40b2df +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabScreenViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.class +new file mode 100644 +index 0000000..dd970b5 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.class +new file mode 100644 +index 0000000..ac8ad4a +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$ContainerUpdateCoordinator.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.class +new file mode 100644 +index 0000000..370d86b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.class +new file mode 100644 +index 0000000..c775f43 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$10.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.class +new file mode 100644 +index 0000000..4081f71 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$11.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.class +new file mode 100644 +index 0000000..c969fd4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$12.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.class +new file mode 100644 +index 0000000..88b98c2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$13.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.class +new file mode 100644 +index 0000000..4cc0ae8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$14.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.class +new file mode 100644 +index 0000000..419980d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$2.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.class +new file mode 100644 +index 0000000..6003717 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$3.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.class +new file mode 100644 +index 0000000..2af9ba9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$4.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.class +new file mode 100644 +index 0000000..2f14829 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$5.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.class +new file mode 100644 +index 0000000..e610dbe +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$6.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.class +new file mode 100644 +index 0000000..37bd81b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$7.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.class +new file mode 100644 +index 0000000..b0e6ef2 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$8.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.class +new file mode 100644 +index 0000000..f649a4d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost$special$$inlined$observable$9.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost.class +new file mode 100644 +index 0000000..116123e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHost.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.class +new file mode 100644 +index 0000000..f5cfc50 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceApplicator.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.class +new file mode 100644 +index 0000000..41bfb28 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.class +new file mode 100644 +index 0000000..000a528 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinatorKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.class +new file mode 100644 +index 0000000..9b3c415 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.class +new file mode 100644 +index 0000000..3798618 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.class +new file mode 100644 +index 0000000..3ad48b4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.class +new file mode 100644 +index 0000000..7a6c6ac +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.class +new file mode 100644 +index 0000000..ed3cd8e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.class +new file mode 100644 +index 0000000..45d154d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.class +new file mode 100644 +index 0000000..7d73833 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenDidDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.class +new file mode 100644 +index 0000000..64b7a75 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.class +new file mode 100644 +index 0000000..4750ca1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillAppearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.class +new file mode 100644 +index 0000000..3083d45 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.class +new file mode 100644 +index 0000000..d0ecc39 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabScreenWillDisappearEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.class +new file mode 100644 +index 0000000..5f1ad8c +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.class +new file mode 100644 +index 0000000..94b0bab +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.class +new file mode 100644 +index 0000000..d8c8dba +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$DrawableRes.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.class +new file mode 100644 +index 0000000..7cb462d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource$UriString.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.class +new file mode 100644 +index 0000000..7644ffb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/RNSImageSource.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.class +new file mode 100644 +index 0000000..bf57c23 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt$loadTabImageInternal$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.class +new file mode 100644 +index 0000000..0226cc1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/gamma/tabs/image/TabsImageLoaderKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.class +new file mode 100644 +index 0000000..a9037b6 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/EdgeInsets$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/EdgeInsets.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/EdgeInsets.class +new file mode 100644 +index 0000000..484d66d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/EdgeInsets.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/InsetType.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/InsetType.class +new file mode 100644 +index 0000000..c84594b +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/InsetType.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaProvider.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaProvider.class +new file mode 100644 +index 0000000..5759e88 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaProvider.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.class +new file mode 100644 +index 0000000..4cde485 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaView$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaView.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaView.class +new file mode 100644 +index 0000000..8eb6ccc +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaView.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewKt.class +new file mode 100644 +index 0000000..5bdad12 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.class +new file mode 100644 +index 0000000..0cceb78 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewManager$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewManager.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewManager.class +new file mode 100644 +index 0000000..2a74dc4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/SafeAreaViewManager.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.class +new file mode 100644 +index 0000000..524f86e +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.class +new file mode 100644 +index 0000000..b16b0f9 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewEdges.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.class +new file mode 100644 +index 0000000..56c5a3f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.class +new file mode 100644 +index 0000000..92206a7 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/anim/ScreensAnimation.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/anim/ScreensAnimation.class +new file mode 100644 +index 0000000..23c9c01 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/anim/ScreensAnimation.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.class +new file mode 100644 +index 0000000..02ce3b4 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategy.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.class +new file mode 100644 +index 0000000..62483cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ChildrenDrawingOrderStrategyBase.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ReverseFromIndex.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ReverseFromIndex.class +new file mode 100644 +index 0000000..0ba72a3 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ReverseFromIndex.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ReverseOrder.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ReverseOrder.class +new file mode 100644 +index 0000000..f0f135f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ReverseOrder.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.class +new file mode 100644 +index 0000000..dd70ee8 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout$animationListener$1.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.class +new file mode 100644 +index 0000000..7ab8bff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/stack/views/ScreensCoordinatorLayout.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.class +new file mode 100644 +index 0000000..0ffa520 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluator.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.class +new file mode 100644 +index 0000000..6f3ce87 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/transition/ExternalBoundaryValuesEvaluatorKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheEntry$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheEntry$Companion.class +new file mode 100644 +index 0000000..bc1604f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheEntry$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheEntry.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheEntry.class +new file mode 100644 +index 0000000..03289ff +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheEntry.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheKey.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheKey.class +new file mode 100644 +index 0000000..a16f823 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/CacheKey.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/DeviceUtils.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/DeviceUtils.class +new file mode 100644 +index 0000000..c687d8d +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/DeviceUtils.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.class +new file mode 100644 +index 0000000..4e037ce +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt$WhenMappings.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.class +new file mode 100644 +index 0000000..503ef6f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/FragmentTransactionKtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/InsetsKtKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/InsetsKtKt.class +new file mode 100644 +index 0000000..ba527f1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/InsetsKtKt.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/PaddingBundle.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/PaddingBundle.class +new file mode 100644 +index 0000000..8504643 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/PaddingBundle.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/RNSLog.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/RNSLog.class +new file mode 100644 +index 0000000..045c6cb +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/RNSLog.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.class +new file mode 100644 +index 0000000..8a16cb1 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper$Companion.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.class +new file mode 100644 +index 0000000..3fdd021 +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.class differ +diff --git a/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.class b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.class +new file mode 100644 +index 0000000..b2c398f +Binary files /dev/null and b/node_modules/react-native-screens/android/build/tmp/kotlin-classes/debug/com/swmansion/rnscreens/utils/ViewBackgroundUtilsKt.class differ diff --git a/packages/react-native-room-kit/example/patches/react-native-vision-camera+4.7.2.patch b/packages/react-native-room-kit/example/patches/react-native-vision-camera+4.7.2.patch new file mode 100644 index 000000000..e3d40ab45 --- /dev/null +++ b/packages/react-native-room-kit/example/patches/react-native-vision-camera+4.7.2.patch @@ -0,0 +1,18967 @@ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/cache-v2-73382b4ef69a82a08bd5.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/cache-v2-73382b4ef69a82a08bd5.json +new file mode 100644 +index 0000000..ede6c26 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/cache-v2-73382b4ef69a82a08bd5.json +@@ -0,0 +1,1451 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "VisionCamera" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Wl,-z,max-page-size=16384" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "ENABLE_FRAME_PROCESSORS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "OFF" ++ }, ++ { ++ "name" : "LOG_LIB", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a library." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/liblog.so" ++ }, ++ { ++ "name" : "NODE_MODULES_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "VisionCamera_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a" ++ }, ++ { ++ "name" : "VisionCamera_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "VisionCamera_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/liblog.so;general;android;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative;" ++ }, ++ { ++ "name" : "VisionCamera_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-7a2941459a5ec3be8e62.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-7a2941459a5ec3be8e62.json +new file mode 100644 +index 0000000..ef124a0 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-7a2941459a5ec3be8e62.json +@@ -0,0 +1,815 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-cde41ac9d709f95b3ceb.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-cde41ac9d709f95b3ceb.json +new file mode 100644 +index 0000000..3e317c1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-cde41ac9d709f95b3ceb.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.9.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "VisionCamera", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "VisionCamera::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-VisionCamera-Debug-ec283dd5225c6178a611.json", ++ "name" : "VisionCamera", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-11-0993.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-11-0993.json +new file mode 100644 +index 0000000..2a2bcbe +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/index-2025-10-24T17-49-11-0993.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-cde41ac9d709f95b3ceb.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-73382b4ef69a82a08bd5.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-7a2941459a5ec3be8e62.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-73382b4ef69a82a08bd5.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-7a2941459a5ec3be8e62.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-cde41ac9d709f95b3ceb.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/target-VisionCamera-Debug-ec283dd5225c6178a611.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/target-VisionCamera-Debug-ec283dd5225c6178a611.json +new file mode 100644 +index 0000000..564d423 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.cmake/api/v1/reply/target-VisionCamera-Debug-ec283dd5225c6178a611.json +@@ -0,0 +1,319 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_definitions", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 58, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 68, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 16, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 21, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 46, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 4, ++ "define" : "EGL_EGLEXT_PROTOTYPES" ++ }, ++ { ++ "backtrace" : 5, ++ "define" : "GL_GLEXT_PROTOTYPES" ++ }, ++ { ++ "backtrace" : 6, ++ "define" : "VISION_CAMERA_ENABLE_FRAME_PROCESSORS=false" ++ }, ++ { ++ "define" : "VisionCamera_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 3, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "17" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "VisionCamera::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/liblog.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "VisionCamera", ++ "nameOnDisk" : "libVisionCamera.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/VisionCamera.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/MutableJByteBuffer.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/FrameHostObject.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/JSIJNIConversion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/VisionCameraProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JFrame.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.ninja_deps b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.ninja_deps +new file mode 100644 +index 0000000..cbde041 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.ninja_deps differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.ninja_log b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.ninja_log +new file mode 100644 +index 0000000..1eb73ad +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/.ninja_log +@@ -0,0 +1,14 @@ ++# ninja log v5 ++8 169 1761328152187091860 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o 15f796e8b4c038e6 ++12 3140 1761328155175069818 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o ff6148e9e015293a ++2 3661 1761328155694942940 CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o b48e33145c1c5e2e ++6 3705 1761328155743680436 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o 15a43214502ea4a6 ++0 3848 1761328155886371491 CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o 160f0bfb3515640a ++2 4298 1761328156308342735 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o 946e55ca213465e7 ++169 4747 1761328156781582878 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o 1dcaf602b0083391 ++5 5099 1761328157129788714 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o 19b94e72e821cc75 ++2 5445 1761328157473652011 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o a682128e435c746f ++4 5559 1761328157578755300 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o ffbfbb6cb342a3f8 ++3145 6083 1761328158115570941 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o e6ae00f6d0dfe880 ++2 6279 1761328158283033192 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o 9f255dae3346ab8e ++6279 6369 1761328158399233961 ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so 434e90c741e9a313 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeCache.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeCache.txt +new file mode 100644 +index 0000000..62feb60 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeCache.txt +@@ -0,0 +1,422 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING=-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=VisionCamera ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-z,max-page-size=16384 ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++ENABLE_FRAME_PROCESSORS:UNINITIALIZED=OFF ++ ++//Path to a library. ++LOG_LIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/liblog.so ++ ++//No help, variable specified on the command line. ++NODE_MODULES_DIR:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++VisionCamera_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++ ++//Value Computed by CMake ++VisionCamera_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++VisionCamera_LIB_DEPENDS:STATIC=general;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/liblog.so;general;android;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative; ++ ++//Value Computed by CMake ++VisionCamera_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..371cbf0 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..ede016e +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..617ba99 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..a3f8910 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..e6fd81c +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "aarch64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..16685fd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..9f6fc7c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeOutput.log b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..8a0fe34 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,264 @@ ++The target system is: Android - 1 - aarch64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;;-O2;-frtti;-fexceptions;-Wall;-Wno-unused-variable;-fstack-protector-all ++Id flags: -c;--target=aarch64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_4bfd9 && [1/2] Building C object CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_4bfd9 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_4bfd9 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_4bfd9 && [1/2] Building C object CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple aarch64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_4bfd9] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_4bfd9 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_4bfd9] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_4bfd9.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c5938 && [1/2] Building CXX object CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -Wno-unused-variable -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 3 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_c5938 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: aarch64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_c5938 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_c5938 && [1/2] Building CXX object CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple aarch64-none-linux-android24 -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -Wno-unused-variable -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 3 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -target-feature +outline-atomics -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/aarch64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_c5938] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: aarch64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --eh-frame-hdr -m aarch64linux -pie -dynamic-linker /system/bin/linker64 -o cmTC_c5938 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-EL] ==> ignore ++ arg [--fix-cortex-a53-843419] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [-zmax-page-size=4096] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [aarch64linux] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_c5938] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_c5938.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-aarch64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/aarch64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..3cb09a1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o +new file mode 100644 +index 0000000..e9bf27c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o +new file mode 100644 +index 0000000..7abe3e1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o +new file mode 100644 +index 0000000..3943095 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o +new file mode 100644 +index 0000000..93d0cf2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o +new file mode 100644 +index 0000000..15a9b00 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o +new file mode 100644 +index 0000000..1afe486 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o +new file mode 100644 +index 0000000..a89f6ff +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o +new file mode 100644 +index 0000000..a6513c2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o +new file mode 100644 +index 0000000..0774cb3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o +new file mode 100644 +index 0000000..78b621f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o +new file mode 100644 +index 0000000..cccff91 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o +new file mode 100644 +index 0000000..45f2a26 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/cmake.check_cache b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/rules.ninja b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..f1cbe9a +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: VisionCamera ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__VisionCamera_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__VisionCamera_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/additional_project_files.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build.json +new file mode 100644 +index 0000000..6792578 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build.json +@@ -0,0 +1,46 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "VisionCamera::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "arm64-v8a", ++ "artifactName": "VisionCamera", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build_mini.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build_mini.json +new file mode 100644 +index 0000000..3cfbdc2 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build_mini.json +@@ -0,0 +1,35 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "VisionCamera::@6890427a1f51a3e7e1df": { ++ "artifactName": "VisionCamera", ++ "abi": "arm64-v8a", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build.ninja b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build.ninja +new file mode 100644 +index 0000000..84f68a7 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build.ninja +@@ -0,0 +1,266 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: VisionCamera ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target VisionCamera ++ ++ ++############################################# ++# Order-only phony target for VisionCamera ++ ++build cmake_object_order_depends_target_VisionCamera: phony || CMakeFiles/VisionCamera.dir ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target VisionCamera ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so ++ ++build ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so: CXX_SHARED_LIBRARY_LINKER__VisionCamera_Debug CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o | /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/liblog.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/24/liblog.so -landroid /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libVisionCamera.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build VisionCamera: phony ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so ++ ++build libVisionCamera.so: phony ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build_file_index.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build_file_index.txt +new file mode 100644 +index 0000000..31e6506 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build_file_index.txt +@@ -0,0 +1,5 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/cmake_install.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/cmake_install.cmake +new file mode 100644 +index 0000000..3ee887a +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..cea68be +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json +@@ -0,0 +1,62 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json.bin +new file mode 100644 +index 0000000..098b473 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json.bin differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/configure_fingerprint.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/configure_fingerprint.bin +new file mode 100644 +index 0000000..1bd4934 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/configure_fingerprint.bin +@@ -0,0 +1,28 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build.json  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build_mini.json  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build.ninja  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build.ninja.txt  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/build_file_index.txt  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json  ں3 ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json.bin  ں3 / ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/metadata_generation_command.txt  ں3 ++ ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/prefab_config.json  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/symbol_folder_index.txt  ں3  ں3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt  ں3  ı3 +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/metadata_generation_command.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/metadata_generation_command.txt +new file mode 100644 +index 0000000..8adc619 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/metadata_generation_command.txt +@@ -0,0 +1,25 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=arm64-v8a ++-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a ++-GNinja ++-DANDROID_STL=c++_shared ++-DNODE_MODULES_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules ++-DENABLE_FRAME_PROCESSORS=OFF ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/prefab_config.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/symbol_folder_index.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/symbol_folder_index.txt +new file mode 100644 +index 0000000..bf976e4 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/hash_key.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/hash_key.txt +new file mode 100644 +index 0000000..e55daf5 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/hash_key.txt +@@ -0,0 +1,32 @@ ++# Values used to calculate the hash in this folder name. ++# Should not depend on the absolute path of the project itself. ++# - AGP: 8.7.2. ++# - $NDK is the path to NDK 27.1.12297006. ++# - $PROJECT is the path to the parent folder of the root Gradle build file. ++# - $ABI is the ABI to be built with. The specific value doesn't contribute to the value of the hash. ++# - $HASH is the hash value computed from this text. ++# - $CMAKE is the path to CMake 3.22.1. ++# - $NINJA is the path to Ninja. ++-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=$ABI ++-DCMAKE_ANDROID_ARCH_ABI=$ABI ++-DANDROID_NDK=$NDK ++-DCMAKE_ANDROID_NDK=$NDK ++-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=$NINJA ++-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/$HASH/prefab/$ABI/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/$HASH/$ABI ++-GNinja ++-DANDROID_STL=c++_shared ++-DNODE_MODULES_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules ++-DENABLE_FRAME_PROCESSORS=OFF ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ef54dbf +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.arm64-v8a/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.arm64-v8a/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.arm64-v8a/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.arm64-v8a/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..bf3d9fa +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.arm64-v8a/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab/lib/aarch64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +new file mode 100644 +index 0000000..ebd75a4 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake +@@ -0,0 +1,36 @@ ++if(NOT TARGET ReactAndroid::hermestooling) ++add_library(ReactAndroid::hermestooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::hermestooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/libs/android.x86_64/libhermestooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/hermestooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsctooling) ++add_library(ReactAndroid::jsctooling SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsctooling PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/libs/android.x86_64/libjsctooling.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsctooling/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::jsi) ++add_library(ReactAndroid::jsi SHARED IMPORTED) ++set_target_properties(ReactAndroid::jsi PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ ++if(NOT TARGET ReactAndroid::reactnative) ++add_library(ReactAndroid::reactnative SHARED IMPORTED) ++set_target_properties(ReactAndroid::reactnative PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +new file mode 100644 +index 0000000..f836dc1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 0.77.3) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +new file mode 100644 +index 0000000..cb56213 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake +@@ -0,0 +1,9 @@ ++if(NOT TARGET fbjni::fbjni) ++add_library(fbjni::fbjni SHARED IMPORTED) ++set_target_properties(fbjni::fbjni PROPERTIES ++ IMPORTED_LOCATION "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so" ++ INTERFACE_INCLUDE_DIRECTORIES "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ INTERFACE_LINK_LIBRARIES "" ++) ++endif() ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +new file mode 100644 +index 0000000..fdd188a +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake +@@ -0,0 +1,9 @@ ++set(PACKAGE_VERSION 3.22.1) ++if("${PACKAGE_VERSION}" VERSION_LESS "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_COMPATIBLE FALSE) ++else() ++ set(PACKAGE_VERSION_COMPATIBLE TRUE) ++ if("${PACKAGE_VERSION}" VERSION_EQUAL "${PACKAGE_FIND_VERSION}") ++ set(PACKAGE_VERSION_EXACT TRUE) ++ endif() ++endif() +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/query/client-agp/cache-v2 b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/query/client-agp/cache-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/query/client-agp/cmakeFiles-v1 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/query/client-agp/codemodel-v2 +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/cache-v2-8b91f73c8ede60ae2f3a.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/cache-v2-8b91f73c8ede60ae2f3a.json +new file mode 100644 +index 0000000..b151172 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/cache-v2-8b91f73c8ede60ae2f3a.json +@@ -0,0 +1,1451 @@ ++{ ++ "entries" : ++ [ ++ { ++ "name" : "ANDROID_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "ANDROID_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "android-24" ++ }, ++ { ++ "name" : "ANDROID_STL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "c++_shared" ++ }, ++ { ++ "name" : "ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_ADDR2LINE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_ARCH_ABI", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "x86_64" ++ }, ++ { ++ "name" : "CMAKE_ANDROID_NDK", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006" ++ }, ++ { ++ "name" : "CMAKE_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_ASM_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_BUILD_TYPE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "Debug" ++ }, ++ { ++ "name" : "CMAKE_CACHEFILE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "This is the directory where this CMakeCache.txt was created" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MAJOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Major version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "3" ++ }, ++ { ++ "name" : "CMAKE_CACHE_MINOR_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Minor version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "22" ++ }, ++ { ++ "name" : "CMAKE_CACHE_PATCH_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Patch version of cmake used to create the current loaded cache" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ { ++ "name" : "CMAKE_CPACK_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cpack program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack" ++ }, ++ { ++ "name" : "CMAKE_CTEST_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to ctest program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_CXX_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_CXX_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C++ applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "(This variable does not exist and should not be used)" ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_AR", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "LLVM archiver" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar" ++ }, ++ { ++ "name" : "CMAKE_C_COMPILER_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generate index for LLVM archive" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during debug builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Os -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the compiler during release builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-O2 -g -DNDEBUG" ++ }, ++ { ++ "name" : "CMAKE_C_STANDARD_LIBRARIES", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Libraries linked by default with all C applications." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-latomic -lm" ++ }, ++ { ++ "name" : "CMAKE_DLLTOOL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool" ++ }, ++ { ++ "name" : "CMAKE_EDIT_COMMAND", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to cache edit program executable." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake" ++ }, ++ { ++ "name" : "CMAKE_EXECUTABLE_FORMAT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Executable file format" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "ELF" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "ON" ++ }, ++ { ++ "name" : "CMAKE_EXTRA_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of external makefile project generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_FIND_ROOT_PATH", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "Ninja" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_INSTANCE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Generator instance identifier." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_PLATFORM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator platform." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_GENERATOR_TOOLSET", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Name of generator toolset." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_HOME_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Source directory with the top level CMakeLists.txt file for this project" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_PREFIX", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install path prefix, prepended onto install directories." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/usr/local" ++ }, ++ { ++ "name" : "CMAKE_INSTALL_SO_NO_EXE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Install .so files without execute permission." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "0" ++ }, ++ { ++ "name" : "CMAKE_LIBRARY_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_LINKER", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" ++ }, ++ { ++ "name" : "CMAKE_MAKE_PROGRAM", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_NM", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm" ++ }, ++ { ++ "name" : "CMAKE_NUMBER_OF_MAKEFILES", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "number of local generators" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_OBJCOPY", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy" ++ }, ++ { ++ "name" : "CMAKE_OBJDUMP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump" ++ }, ++ { ++ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Platform information initialized" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "1" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_DESCRIPTION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_HOMEPAGE_URL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_PROJECT_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "VisionCamera" ++ }, ++ { ++ "name" : "CMAKE_RANLIB", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Ranlib" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib" ++ }, ++ { ++ "name" : "CMAKE_READELF", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a program." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf" ++ }, ++ { ++ "name" : "CMAKE_ROOT", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to CMake installation." ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ { ++ "name" : "CMAKE_RUNTIME_OUTPUT_DIRECTORY", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of dll's." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "-Wl,-z,max-page-size=16384" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_SKIP_INSTALL_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_SKIP_RPATH", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If set, runtime paths are not added when using shared libraries." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "NO" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during all build types." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." ++ } ++ ], ++ "type" : "STRING", ++ "value" : "" ++ }, ++ { ++ "name" : "CMAKE_STRIP", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "Strip" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_NAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "Android" ++ }, ++ { ++ "name" : "CMAKE_SYSTEM_VERSION", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "24" ++ }, ++ { ++ "name" : "CMAKE_TOOLCHAIN_FILE", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The CMake toolchain file" ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "name" : "CMAKE_UNAME", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "uname command" ++ } ++ ], ++ "type" : "INTERNAL", ++ "value" : "/usr/bin/uname" ++ }, ++ { ++ "name" : "CMAKE_VERBOSE_MAKEFILE", ++ "properties" : ++ [ ++ { ++ "name" : "ADVANCED", ++ "value" : "1" ++ }, ++ { ++ "name" : "HELPSTRING", ++ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." ++ } ++ ], ++ "type" : "BOOL", ++ "value" : "FALSE" ++ }, ++ { ++ "name" : "ENABLE_FRAME_PROCESSORS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "OFF" ++ }, ++ { ++ "name" : "LOG_LIB", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Path to a library." ++ } ++ ], ++ "type" : "FILEPATH", ++ "value" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/liblog.so" ++ }, ++ { ++ "name" : "NODE_MODULES_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "No help, variable specified on the command line." ++ } ++ ], ++ "type" : "UNINITIALIZED", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules" ++ }, ++ { ++ "name" : "ReactAndroid_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for ReactAndroid." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid" ++ }, ++ { ++ "name" : "VisionCamera_BINARY_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64" ++ }, ++ { ++ "name" : "VisionCamera_IS_TOP_LEVEL", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "ON" ++ }, ++ { ++ "name" : "VisionCamera_LIB_DEPENDS", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Dependencies for the target" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "general;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/liblog.so;general;android;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative;" ++ }, ++ { ++ "name" : "VisionCamera_SOURCE_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "Value Computed by CMake" ++ } ++ ], ++ "type" : "STATIC", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ { ++ "name" : "fbjni_DIR", ++ "properties" : ++ [ ++ { ++ "name" : "HELPSTRING", ++ "value" : "The directory containing a CMake configuration file for fbjni." ++ } ++ ], ++ "type" : "PATH", ++ "value" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni" ++ } ++ ], ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db06a02eefc5e7ea1f2e.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db06a02eefc5e7ea1f2e.json +new file mode 100644 +index 0000000..56019aa +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db06a02eefc5e7ea1f2e.json +@@ -0,0 +1,815 @@ ++{ ++ "inputs" : ++ [ ++ { ++ "path" : "CMakeLists.txt" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake" ++ }, ++ { ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake" ++ }, ++ { ++ "isCMake" : true, ++ "isExternal" : true, ++ "path" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in" ++ }, ++ { ++ "isGenerated" : true, ++ "path" : ".cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake" ++ }, ++ { ++ "path" : ".cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake" ++ } ++ ], ++ "kind" : "cmakeFiles", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/codemodel-v2-3a7c135cf8c83a758b42.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/codemodel-v2-3a7c135cf8c83a758b42.json +new file mode 100644 +index 0000000..14b0693 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/codemodel-v2-3a7c135cf8c83a758b42.json +@@ -0,0 +1,60 @@ ++{ ++ "configurations" : ++ [ ++ { ++ "directories" : ++ [ ++ { ++ "build" : ".", ++ "jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json", ++ "minimumCMakeVersion" : ++ { ++ "string" : "3.9.0" ++ }, ++ "projectIndex" : 0, ++ "source" : ".", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "name" : "Debug", ++ "projects" : ++ [ ++ { ++ "directoryIndexes" : ++ [ ++ 0 ++ ], ++ "name" : "VisionCamera", ++ "targetIndexes" : ++ [ ++ 0 ++ ] ++ } ++ ], ++ "targets" : ++ [ ++ { ++ "directoryIndex" : 0, ++ "id" : "VisionCamera::@6890427a1f51a3e7e1df", ++ "jsonFile" : "target-VisionCamera-Debug-2c98cd2daf250b42da69.json", ++ "name" : "VisionCamera", ++ "projectIndex" : 0 ++ } ++ ] ++ } ++ ], ++ "kind" : "codemodel", ++ "paths" : ++ { ++ "build" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "source" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android" ++ }, ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +new file mode 100644 +index 0000000..3a67af9 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json +@@ -0,0 +1,14 @@ ++{ ++ "backtraceGraph" : ++ { ++ "commands" : [], ++ "files" : [], ++ "nodes" : [] ++ }, ++ "installers" : [], ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-19-0906.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-19-0906.json +new file mode 100644 +index 0000000..85fff63 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/index-2025-10-24T17-49-19-0906.json +@@ -0,0 +1,92 @@ ++{ ++ "cmake" : ++ { ++ "generator" : ++ { ++ "multiConfig" : false, ++ "name" : "Ninja" ++ }, ++ "paths" : ++ { ++ "cmake" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake", ++ "cpack" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack", ++ "ctest" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest", ++ "root" : "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22" ++ }, ++ "version" : ++ { ++ "isDirty" : false, ++ "major" : 3, ++ "minor" : 22, ++ "patch" : 1, ++ "string" : "3.22.1-g37088a8", ++ "suffix" : "g37088a8" ++ } ++ }, ++ "objects" : ++ [ ++ { ++ "jsonFile" : "codemodel-v2-3a7c135cf8c83a758b42.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ }, ++ { ++ "jsonFile" : "cache-v2-8b91f73c8ede60ae2f3a.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ { ++ "jsonFile" : "cmakeFiles-v1-db06a02eefc5e7ea1f2e.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ } ++ ], ++ "reply" : ++ { ++ "client-agp" : ++ { ++ "cache-v2" : ++ { ++ "jsonFile" : "cache-v2-8b91f73c8ede60ae2f3a.json", ++ "kind" : "cache", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 0 ++ } ++ }, ++ "cmakeFiles-v1" : ++ { ++ "jsonFile" : "cmakeFiles-v1-db06a02eefc5e7ea1f2e.json", ++ "kind" : "cmakeFiles", ++ "version" : ++ { ++ "major" : 1, ++ "minor" : 0 ++ } ++ }, ++ "codemodel-v2" : ++ { ++ "jsonFile" : "codemodel-v2-3a7c135cf8c83a758b42.json", ++ "kind" : "codemodel", ++ "version" : ++ { ++ "major" : 2, ++ "minor" : 3 ++ } ++ } ++ } ++ } ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/target-VisionCamera-Debug-2c98cd2daf250b42da69.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/target-VisionCamera-Debug-2c98cd2daf250b42da69.json +new file mode 100644 +index 0000000..b996b79 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.cmake/api/v1/reply/target-VisionCamera-Debug-2c98cd2daf250b42da69.json +@@ -0,0 +1,319 @@ ++{ ++ "artifacts" : ++ [ ++ { ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so" ++ } ++ ], ++ "backtrace" : 1, ++ "backtraceGraph" : ++ { ++ "commands" : ++ [ ++ "add_library", ++ "target_link_libraries", ++ "add_definitions", ++ "target_include_directories" ++ ], ++ "files" : ++ [ ++ "CMakeLists.txt" ++ ], ++ "nodes" : ++ [ ++ { ++ "file" : 0 ++ }, ++ { ++ "command" : 0, ++ "file" : 0, ++ "line" : 26, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 58, ++ "parent" : 0 ++ }, ++ { ++ "command" : 1, ++ "file" : 0, ++ "line" : 68, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 15, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 16, ++ "parent" : 0 ++ }, ++ { ++ "command" : 2, ++ "file" : 0, ++ "line" : 21, ++ "parent" : 0 ++ }, ++ { ++ "command" : 3, ++ "file" : 0, ++ "line" : 46, ++ "parent" : 0 ++ } ++ ] ++ }, ++ "compileGroups" : ++ [ ++ { ++ "compileCommandFragments" : ++ [ ++ { ++ "fragment" : "-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC" ++ } ++ ], ++ "defines" : ++ [ ++ { ++ "backtrace" : 4, ++ "define" : "EGL_EGLEXT_PROTOTYPES" ++ }, ++ { ++ "backtrace" : 5, ++ "define" : "GL_GLEXT_PROTOTYPES" ++ }, ++ { ++ "backtrace" : 6, ++ "define" : "VISION_CAMERA_ENABLE_FRAME_PROCESSORS=false" ++ }, ++ { ++ "define" : "VisionCamera_EXPORTS" ++ } ++ ], ++ "includes" : ++ [ ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker" ++ }, ++ { ++ "backtrace" : 7, ++ "path" : "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include" ++ }, ++ { ++ "backtrace" : 2, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include" ++ }, ++ { ++ "backtrace" : 3, ++ "isSystem" : true, ++ "path" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include" ++ } ++ ], ++ "language" : "CXX", ++ "languageStandard" : ++ { ++ "backtraces" : ++ [ ++ 1 ++ ], ++ "standard" : "17" ++ }, ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11 ++ ], ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ } ++ ], ++ "id" : "VisionCamera::@6890427a1f51a3e7e1df", ++ "link" : ++ { ++ "commandFragments" : ++ [ ++ { ++ "fragment" : "-Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384", ++ "role" : "flags" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/liblog.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "-landroid", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 2, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "role" : "libraries" ++ }, ++ { ++ "backtrace" : 3, ++ "fragment" : "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so", ++ "role" : "libraries" ++ }, ++ { ++ "fragment" : "-latomic -lm", ++ "role" : "libraries" ++ } ++ ], ++ "language" : "CXX", ++ "sysroot" : ++ { ++ "path" : "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot" ++ } ++ }, ++ "name" : "VisionCamera", ++ "nameOnDisk" : "libVisionCamera.so", ++ "paths" : ++ { ++ "build" : ".", ++ "source" : "." ++ }, ++ "sourceGroups" : ++ [ ++ { ++ "name" : "Source Files", ++ "sourceIndexes" : ++ [ ++ 0, ++ 1, ++ 2, ++ 3, ++ 4, ++ 5, ++ 6, ++ 7, ++ 8, ++ 9, ++ 10, ++ 11 ++ ] ++ } ++ ], ++ "sources" : ++ [ ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/VisionCamera.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/MutableJByteBuffer.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/FrameHostObject.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/JSIJNIConversion.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/VisionCameraProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JFrame.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp", ++ "sourceGroupIndex" : 0 ++ }, ++ { ++ "backtrace" : 1, ++ "compileGroupIndex" : 0, ++ "path" : "src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp", ++ "sourceGroupIndex" : 0 ++ } ++ ], ++ "type" : "SHARED_LIBRARY" ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.ninja_deps b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.ninja_deps +new file mode 100644 +index 0000000..8042ff2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.ninja_deps differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.ninja_log b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.ninja_log +new file mode 100644 +index 0000000..7d4f84f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/.ninja_log +@@ -0,0 +1,14 @@ ++# ninja log v5 ++9 75 1761328160013282441 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o f535f68e6728c7b2 ++9 2027 1761328161955252646 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o 67240ac30fbcf5b ++0 2167 1761328162097610024 CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o c2fb1b5a5e48ee96 ++9 2190 1761328162122705397 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o 8ab059becd89f915 ++0 2399 1761328162331192844 CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o 56af221c36f0d103 ++1 2708 1761328162640935473 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o 812fe5f07ab88402 ++76 3161 1761328163087067813 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o 365634628521fa2c ++5 3490 1761328163421617889 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o a9110d43c18e5866 ++5 3718 1761328163645452518 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o aca66dede3c37ef6 ++3 3915 1761328163840455252 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o d59479b0d96e759 ++1 4036 1761328163967856961 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o 90f744254266e7b5 ++2032 4110 1761328164039957447 CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o 9bdfb77e2c45a647 ++4110 4257 1761328164184716602 ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so 6e828a22c0b5b5f9 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeCache.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeCache.txt +new file mode 100644 +index 0000000..daf30b1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeCache.txt +@@ -0,0 +1,422 @@ ++# This is the CMakeCache file. ++# For build in directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++# It was generated by CMake: /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++# You can edit this file to change values found and used by cmake. ++# If you do not want to change any of the values, simply exit the editor. ++# If you do want to change a value, simply edit, save, and exit the editor. ++# The syntax for the file is as follows: ++# KEY:TYPE=VALUE ++# KEY is the name of a variable in the cache. ++# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. ++# VALUE is the current value for the KEY. ++ ++######################## ++# EXTERNAL cache entries ++######################## ++ ++//No help, variable specified on the command line. ++ANDROID_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//No help, variable specified on the command line. ++ANDROID_PLATFORM:UNINITIALIZED=android-24 ++ ++//No help, variable specified on the command line. ++ANDROID_STL:UNINITIALIZED=c++_shared ++ ++//No help, variable specified on the command line. ++ANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES:UNINITIALIZED=ON ++ ++//Path to a program. ++CMAKE_ADDR2LINE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-addr2line ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86_64 ++ ++//No help, variable specified on the command line. ++CMAKE_ANDROID_NDK:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++ ++//Archiver ++CMAKE_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Flags used by the compiler during all build types. ++CMAKE_ASM_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_ASM_FLAGS_DEBUG:STRING= ++ ++//Flags used by the compiler during release builds. ++CMAKE_ASM_FLAGS_RELEASE:STRING= ++ ++//Choose the type of build, options are: None Debug Release RelWithDebInfo ++// MinSizeRel ... ++CMAKE_BUILD_TYPE:STRING=Debug ++ ++//LLVM archiver ++CMAKE_CXX_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_CXX_FLAGS:STRING=-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all ++ ++//Flags used by the compiler during debug builds. ++CMAKE_CXX_FLAGS_DEBUG:STRING= ++ ++//Flags used by the CXX compiler during MINSIZEREL builds. ++CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_CXX_FLAGS_RELEASE:STRING= ++ ++//Flags used by the CXX compiler during RELWITHDEBINFO builds. ++CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C++ applications. ++CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//LLVM archiver ++CMAKE_C_COMPILER_AR:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar ++ ++//Generate index for LLVM archive ++CMAKE_C_COMPILER_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Flags used by the compiler during all build types. ++CMAKE_C_FLAGS:STRING= ++ ++//Flags used by the compiler during debug builds. ++CMAKE_C_FLAGS_DEBUG:STRING= ++ ++//Flags used by the C compiler during MINSIZEREL builds. ++CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG ++ ++//Flags used by the compiler during release builds. ++CMAKE_C_FLAGS_RELEASE:STRING= ++ ++//Flags used by the C compiler during RELWITHDEBINFO builds. ++CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG ++ ++//Libraries linked by default with all C applications. ++CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm ++ ++//Path to a program. ++CMAKE_DLLTOOL:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-dlltool ++ ++//Flags used by the linker. ++CMAKE_EXE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during DEBUG builds. ++CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during MINSIZEREL builds. ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during RELEASE builds. ++CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during RELWITHDEBINFO builds. ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//No help, variable specified on the command line. ++CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON ++ ++//No help, variable specified on the command line. ++CMAKE_FIND_ROOT_PATH:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab ++ ++//Install path prefix, prepended onto install directories. ++CMAKE_INSTALL_PREFIX:PATH=/usr/local ++ ++//No help, variable specified on the command line. ++CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 ++ ++//Path to a program. ++CMAKE_LINKER:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld ++ ++//No help, variable specified on the command line. ++CMAKE_MAKE_PROGRAM:UNINITIALIZED=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++ ++//Flags used by the linker during the creation of modules. ++CMAKE_MODULE_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// DEBUG builds. ++CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// MINSIZEREL builds. ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELEASE builds. ++CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of modules during ++// RELWITHDEBINFO builds. ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Path to a program. ++CMAKE_NM:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-nm ++ ++//Path to a program. ++CMAKE_OBJCOPY:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objcopy ++ ++//Path to a program. ++CMAKE_OBJDUMP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump ++ ++//Value Computed by CMake ++CMAKE_PROJECT_DESCRIPTION:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_HOMEPAGE_URL:STATIC= ++ ++//Value Computed by CMake ++CMAKE_PROJECT_NAME:STATIC=VisionCamera ++ ++//Ranlib ++CMAKE_RANLIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib ++ ++//Path to a program. ++CMAKE_READELF:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-readelf ++ ++//No help, variable specified on the command line. ++CMAKE_RUNTIME_OUTPUT_DIRECTORY:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 ++ ++//Flags used by the linker during the creation of dll's. ++CMAKE_SHARED_LINKER_FLAGS:STRING=-Wl,-z,max-page-size=16384 ++ ++//Flags used by the linker during the creation of shared libraries ++// during DEBUG builds. ++CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during MINSIZEREL builds. ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELEASE builds. ++CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of shared libraries ++// during RELWITHDEBINFO builds. ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//If set, runtime paths are not added when installing shared libraries, ++// but are added when building. ++CMAKE_SKIP_INSTALL_RPATH:BOOL=NO ++ ++//If set, runtime paths are not added when using shared libraries. ++CMAKE_SKIP_RPATH:BOOL=NO ++ ++//Flags used by the linker during the creation of static libraries ++// during all build types. ++CMAKE_STATIC_LINKER_FLAGS:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during DEBUG builds. ++CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during MINSIZEREL builds. ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELEASE builds. ++CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= ++ ++//Flags used by the linker during the creation of static libraries ++// during RELWITHDEBINFO builds. ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= ++ ++//Strip ++CMAKE_STRIP:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-strip ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_NAME:UNINITIALIZED=Android ++ ++//No help, variable specified on the command line. ++CMAKE_SYSTEM_VERSION:UNINITIALIZED=24 ++ ++//The CMake toolchain file ++CMAKE_TOOLCHAIN_FILE:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++ ++//If this value is on, makefiles will be generated without the ++// .SILENT directive, and all commands will be echoed to the console ++// during the make. This is useful for debugging only. With Visual ++// Studio IDE projects all commands are done without /nologo. ++CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE ++ ++//No help, variable specified on the command line. ++ENABLE_FRAME_PROCESSORS:UNINITIALIZED=OFF ++ ++//Path to a library. ++LOG_LIB:FILEPATH=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/liblog.so ++ ++//No help, variable specified on the command line. ++NODE_MODULES_DIR:UNINITIALIZED=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules ++ ++//The directory containing a CMake configuration file for ReactAndroid. ++ReactAndroid_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid ++ ++//Value Computed by CMake ++VisionCamera_BINARY_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++ ++//Value Computed by CMake ++VisionCamera_IS_TOP_LEVEL:STATIC=ON ++ ++//Dependencies for the target ++VisionCamera_LIB_DEPENDS:STATIC=general;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/liblog.so;general;android;general;ReactAndroid::jsi;general;fbjni::fbjni;general;ReactAndroid::reactnative; ++ ++//Value Computed by CMake ++VisionCamera_SOURCE_DIR:STATIC=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++ ++//The directory containing a CMake configuration file for fbjni. ++fbjni_DIR:PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni ++ ++ ++######################## ++# INTERNAL cache entries ++######################## ++ ++//ADVANCED property for variable: CMAKE_ADDR2LINE ++CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_AR ++CMAKE_AR-ADVANCED:INTERNAL=1 ++//This is the directory where this CMakeCache.txt was created ++CMAKE_CACHEFILE_DIR:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++//Major version of cmake used to create the current loaded cache ++CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 ++//Minor version of cmake used to create the current loaded cache ++CMAKE_CACHE_MINOR_VERSION:INTERNAL=22 ++//Patch version of cmake used to create the current loaded cache ++CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 ++//Path to CMake executable. ++CMAKE_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake ++//Path to cpack program executable. ++CMAKE_CPACK_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cpack ++//Path to ctest program executable. ++CMAKE_CTEST_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ctest ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR ++CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB ++CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS ++CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG ++CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL ++CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE ++CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO ++CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES ++CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_AR ++CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB ++CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS ++CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG ++CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL ++CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE ++CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO ++CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES ++CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_DLLTOOL ++CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 ++//Path to cache edit program executable. ++CMAKE_EDIT_COMMAND:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake ++//Executable file format ++CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS ++CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG ++CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ++CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE ++CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//Name of external makefile project generator. ++CMAKE_EXTRA_GENERATOR:INTERNAL= ++//Name of generator. ++CMAKE_GENERATOR:INTERNAL=Ninja ++//Generator instance identifier. ++CMAKE_GENERATOR_INSTANCE:INTERNAL= ++//Name of generator platform. ++CMAKE_GENERATOR_PLATFORM:INTERNAL= ++//Name of generator toolset. ++CMAKE_GENERATOR_TOOLSET:INTERNAL= ++//Source directory with the top level CMakeLists.txt file for this ++// project ++CMAKE_HOME_DIRECTORY:INTERNAL=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++//Install .so files without execute permission. ++CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 ++//ADVANCED property for variable: CMAKE_LINKER ++CMAKE_LINKER-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS ++CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG ++CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ++CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE ++CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_NM ++CMAKE_NM-ADVANCED:INTERNAL=1 ++//number of local generators ++CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJCOPY ++CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_OBJDUMP ++CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 ++//Platform information initialized ++CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_RANLIB ++CMAKE_RANLIB-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_READELF ++CMAKE_READELF-ADVANCED:INTERNAL=1 ++//Path to CMake installation. ++CMAKE_ROOT:INTERNAL=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS ++CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG ++CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ++CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE ++CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH ++CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_SKIP_RPATH ++CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS ++CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG ++CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ++CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE ++CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO ++CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 ++//ADVANCED property for variable: CMAKE_STRIP ++CMAKE_STRIP-ADVANCED:INTERNAL=1 ++//uname command ++CMAKE_UNAME:INTERNAL=/usr/bin/uname ++//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE ++CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +new file mode 100644 +index 0000000..7cc57c9 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake +@@ -0,0 +1,72 @@ ++set(CMAKE_C_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang") ++set(CMAKE_C_COMPILER_ARG1 "") ++set(CMAKE_C_COMPILER_ID "Clang") ++set(CMAKE_C_COMPILER_VERSION "18.0.2") ++set(CMAKE_C_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_C_COMPILER_WRAPPER "") ++set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") ++set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") ++set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") ++set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") ++set(CMAKE_C17_COMPILE_FEATURES "c_std_17") ++set(CMAKE_C23_COMPILE_FEATURES "c_std_23") ++ ++set(CMAKE_C_PLATFORM_ID "Linux") ++set(CMAKE_C_SIMULATE_ID "") ++set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_C_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_C_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_C_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCC ) ++set(CMAKE_C_COMPILER_LOADED 1) ++set(CMAKE_C_COMPILER_WORKS TRUE) ++set(CMAKE_C_ABI_COMPILED TRUE) ++ ++set(CMAKE_C_COMPILER_ENV_VAR "CC") ++ ++set(CMAKE_C_COMPILER_ID_RUN 1) ++set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) ++set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) ++set(CMAKE_C_LINKER_PREFERENCE 10) ++ ++# Save compiler ABI information. ++set(CMAKE_C_SIZEOF_DATA_PTR "8") ++set(CMAKE_C_COMPILER_ABI "ELF") ++set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_C_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_C_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_C_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_C_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +new file mode 100644 +index 0000000..f17c25f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake +@@ -0,0 +1,83 @@ ++set(CMAKE_CXX_COMPILER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++") ++set(CMAKE_CXX_COMPILER_ARG1 "") ++set(CMAKE_CXX_COMPILER_ID "Clang") ++set(CMAKE_CXX_COMPILER_VERSION "18.0.2") ++set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") ++set(CMAKE_CXX_COMPILER_WRAPPER "") ++set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") ++set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") ++set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") ++set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") ++set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") ++set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") ++set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") ++set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") ++set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") ++ ++set(CMAKE_CXX_PLATFORM_ID "Linux") ++set(CMAKE_CXX_SIMULATE_ID "") ++set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") ++set(CMAKE_CXX_SIMULATE_VERSION "") ++ ++ ++ ++ ++set(CMAKE_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_CXX_COMPILER_AR "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ar") ++set(CMAKE_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_CXX_COMPILER_RANLIB "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-ranlib") ++set(CMAKE_LINKER "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld") ++set(CMAKE_MT "") ++set(CMAKE_COMPILER_IS_GNUCXX ) ++set(CMAKE_CXX_COMPILER_LOADED 1) ++set(CMAKE_CXX_COMPILER_WORKS TRUE) ++set(CMAKE_CXX_ABI_COMPILED TRUE) ++ ++set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") ++ ++set(CMAKE_CXX_COMPILER_ID_RUN 1) ++set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) ++set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) ++ ++foreach (lang C OBJC OBJCXX) ++ if (CMAKE_${lang}_COMPILER_ID_RUN) ++ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) ++ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) ++ endforeach() ++ endif() ++endforeach() ++ ++set(CMAKE_CXX_LINKER_PREFERENCE 30) ++set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) ++ ++# Save compiler ABI information. ++set(CMAKE_CXX_SIZEOF_DATA_PTR "8") ++set(CMAKE_CXX_COMPILER_ABI "ELF") ++set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") ++set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") ++ ++if(CMAKE_CXX_SIZEOF_DATA_PTR) ++ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") ++endif() ++ ++if(CMAKE_CXX_COMPILER_ABI) ++ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") ++endif() ++ ++if(CMAKE_CXX_LIBRARY_ARCHITECTURE) ++ set(CMAKE_LIBRARY_ARCHITECTURE "") ++endif() ++ ++set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") ++if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) ++ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") ++endif() ++ ++ ++ ++ ++ ++set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include") ++set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl") ++set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib") ++set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin +new file mode 100755 +index 0000000..8c5f0fe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_C.bin differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin +new file mode 100755 +index 0000000..0976ecd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeDetermineCompilerABI_CXX.bin differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +new file mode 100644 +index 0000000..a9adbbb +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake +@@ -0,0 +1,15 @@ ++set(CMAKE_HOST_SYSTEM "Darwin-24.6.0") ++set(CMAKE_HOST_SYSTEM_NAME "Darwin") ++set(CMAKE_HOST_SYSTEM_VERSION "24.6.0") ++set(CMAKE_HOST_SYSTEM_PROCESSOR "arm64") ++ ++include("/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake") ++ ++set(CMAKE_SYSTEM "Android-1") ++set(CMAKE_SYSTEM_NAME "Android") ++set(CMAKE_SYSTEM_VERSION "1") ++set(CMAKE_SYSTEM_PROCESSOR "x86_64") ++ ++set(CMAKE_CROSSCOMPILING "TRUE") ++ ++set(CMAKE_SYSTEM_LOADED 1) +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +new file mode 100644 +index 0000000..41b99d7 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c +@@ -0,0 +1,803 @@ ++#ifdef __cplusplus ++# error "A C++ compiler has been selected for C." ++#endif ++ ++#if defined(__18CXX) ++# define ID_VOID_MAIN ++#endif ++#if defined(__CLASSIC_C__) ++/* cv-qualifiers did not exist in K&R C */ ++# define const ++# define volatile ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_C) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_C >= 0x5100 ++ /* __SUNPRO_C = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) ++# endif ++ ++#elif defined(__HP_cc) ++# define COMPILER_ID "HP" ++ /* __HP_cc = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) ++ ++#elif defined(__DECC) ++# define COMPILER_ID "Compaq" ++ /* __DECC_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) ++ ++#elif defined(__IBMC__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMC__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__TINYC__) ++# define COMPILER_ID "TinyCC" ++ ++#elif defined(__BCC__) ++# define COMPILER_ID "Bruce" ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) ++# define COMPILER_ID "GNU" ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) ++# define COMPILER_ID "SDCC" ++# if defined(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) ++# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) ++# else ++ /* SDCC = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(SDCC/100) ++# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(SDCC % 10) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if !defined(__STDC__) && !defined(__clang__) ++# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) ++# define C_VERSION "90" ++# else ++# define C_VERSION ++# endif ++#elif __STDC_VERSION__ > 201710L ++# define C_VERSION "23" ++#elif __STDC_VERSION__ >= 201710L ++# define C_VERSION "17" ++#elif __STDC_VERSION__ >= 201000L ++# define C_VERSION "11" ++#elif __STDC_VERSION__ >= 199901L ++# define C_VERSION "99" ++#else ++# define C_VERSION "90" ++#endif ++const char* info_language_standard_default = ++ "INFO" ":" "standard_default[" C_VERSION "]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++#ifdef ID_VOID_MAIN ++void main() {} ++#else ++# if defined(__CLASSIC_C__) ++int main(argc, argv) int argc; char *argv[]; ++# else ++int main(int argc, char* argv[]) ++# endif ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++ require += info_arch[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} ++#endif +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o +new file mode 100644 +index 0000000..03fbaf2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +new file mode 100644 +index 0000000..25c62a8 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp +@@ -0,0 +1,791 @@ ++/* This source file must have a .cpp extension so that all C++ compilers ++ recognize the extension without flags. Borland does not know .cxx for ++ example. */ ++#ifndef __cplusplus ++# error "A C compiler has been selected for C++." ++#endif ++ ++#if !defined(__has_include) ++/* If the compiler does not have __has_include, pretend the answer is ++ always no. */ ++# define __has_include(x) 0 ++#endif ++ ++ ++/* Version number components: V=Version, R=Revision, P=Patch ++ Version date components: YYYY=Year, MM=Month, DD=Day */ ++ ++#if defined(__COMO__) ++# define COMPILER_ID "Comeau" ++ /* __COMO_VERSION__ = VRR */ ++# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) ++# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) ++ ++#elif defined(__INTEL_COMPILER) || defined(__ICC) ++# define COMPILER_ID "Intel" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++# endif ++ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, ++ except that a few beta releases use the old format with V=2021. */ ++# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) ++# if defined(__INTEL_COMPILER_UPDATE) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) ++# else ++# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) ++# endif ++# else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) ++ /* The third version component from --version is an update index, ++ but no macro is provided for it. */ ++# define COMPILER_VERSION_PATCH DEC(0) ++# endif ++# if defined(__INTEL_COMPILER_BUILD_DATE) ++ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ ++# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) ++# endif ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++# elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) ++# define COMPILER_ID "IntelLLVM" ++#if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_ID "GNU" ++#endif ++/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and ++ * later. Look for 6 digit vs. 8 digit version number to decide encoding. ++ * VVVV is no smaller than the current year when a version is released. ++ */ ++#if __INTEL_LLVM_COMPILER < 1000000L ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) ++#else ++# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) ++# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) ++#endif ++#if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++#endif ++#if defined(__GNUC__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) ++#elif defined(__GNUG__) ++# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) ++#endif ++#if defined(__GNUC_MINOR__) ++# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) ++#endif ++#if defined(__GNUC_PATCHLEVEL__) ++# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++#endif ++ ++#elif defined(__PATHCC__) ++# define COMPILER_ID "PathScale" ++# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) ++# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) ++# if defined(__PATHCC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) ++# endif ++ ++#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) ++# define COMPILER_ID "Embarcadero" ++# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) ++# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) ++# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) ++ ++#elif defined(__BORLANDC__) ++# define COMPILER_ID "Borland" ++ /* __BORLANDC__ = 0xVRR */ ++# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) ++# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) ++ ++#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 ++# define COMPILER_ID "Watcom" ++ /* __WATCOMC__ = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__WATCOMC__) ++# define COMPILER_ID "OpenWatcom" ++ /* __WATCOMC__ = VVRP + 1100 */ ++# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) ++# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) ++# if (__WATCOMC__ % 10) > 0 ++# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) ++# endif ++ ++#elif defined(__SUNPRO_CC) ++# define COMPILER_ID "SunPro" ++# if __SUNPRO_CC >= 0x5100 ++ /* __SUNPRO_CC = 0xVRRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# else ++ /* __SUNPRO_CC = 0xVRP */ ++# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) ++# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) ++# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) ++# endif ++ ++#elif defined(__HP_aCC) ++# define COMPILER_ID "HP" ++ /* __HP_aCC = VVRRPP */ ++# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) ++# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) ++# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) ++ ++#elif defined(__DECCXX) ++# define COMPILER_ID "Compaq" ++ /* __DECCXX_VER = VVRRTPPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) ++# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) ++# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) ++ ++#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) ++# define COMPILER_ID "zOS" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__ibmxl__) && defined(__clang__) ++# define COMPILER_ID "XLClang" ++# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) ++# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) ++# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) ++# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) ++ ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 ++# define COMPILER_ID "XL" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 ++# define COMPILER_ID "VisualAge" ++ /* __IBMCPP__ = VRP */ ++# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) ++# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) ++ ++#elif defined(__NVCOMPILER) ++# define COMPILER_ID "NVHPC" ++# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) ++# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) ++# if defined(__NVCOMPILER_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) ++# endif ++ ++#elif defined(__PGI) ++# define COMPILER_ID "PGI" ++# define COMPILER_VERSION_MAJOR DEC(__PGIC__) ++# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) ++# if defined(__PGIC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_CRAYC) ++# define COMPILER_ID "Cray" ++# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) ++# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# define COMPILER_ID "TI" ++ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ ++# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) ++# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) ++# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) ++ ++#elif defined(__CLANG_FUJITSU) ++# define COMPILER_ID "FujitsuClang" ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# define COMPILER_VERSION_INTERNAL_STR __clang_version__ ++ ++ ++#elif defined(__FUJITSU) ++# define COMPILER_ID "Fujitsu" ++# if defined(__FCC_version__) ++# define COMPILER_VERSION __FCC_version__ ++# elif defined(__FCC_major__) ++# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) ++# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) ++# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) ++# endif ++# if defined(__fcc_version) ++# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) ++# elif defined(__FCC_VERSION) ++# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) ++# endif ++ ++ ++#elif defined(__ghs__) ++# define COMPILER_ID "GHS" ++/* __GHS_VERSION_NUMBER = VVVVRP */ ++# ifdef __GHS_VERSION_NUMBER ++# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) ++# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) ++# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) ++# endif ++ ++#elif defined(__SCO_VERSION__) ++# define COMPILER_ID "SCO" ++ ++#elif defined(__ARMCC_VERSION) && !defined(__clang__) ++# define COMPILER_ID "ARMCC" ++#if __ARMCC_VERSION >= 1000000 ++ /* __ARMCC_VERSION = VRRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#else ++ /* __ARMCC_VERSION = VRPPPP */ ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) ++#endif ++ ++ ++#elif defined(__clang__) && defined(__apple_build_version__) ++# define COMPILER_ID "AppleClang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) ++ ++#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) ++# define COMPILER_ID "ARMClang" ++ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) ++ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) ++ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) ++# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) ++ ++#elif defined(__clang__) ++# define COMPILER_ID "Clang" ++# if defined(_MSC_VER) ++# define SIMULATE_ID "MSVC" ++# endif ++# define COMPILER_VERSION_MAJOR DEC(__clang_major__) ++# define COMPILER_VERSION_MINOR DEC(__clang_minor__) ++# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) ++# if defined(_MSC_VER) ++ /* _MSC_VER = VVRR */ ++# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) ++# endif ++ ++#elif defined(__GNUC__) || defined(__GNUG__) ++# define COMPILER_ID "GNU" ++# if defined(__GNUC__) ++# define COMPILER_VERSION_MAJOR DEC(__GNUC__) ++# else ++# define COMPILER_VERSION_MAJOR DEC(__GNUG__) ++# endif ++# if defined(__GNUC_MINOR__) ++# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) ++# endif ++# if defined(__GNUC_PATCHLEVEL__) ++# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) ++# endif ++ ++#elif defined(_MSC_VER) ++# define COMPILER_ID "MSVC" ++ /* _MSC_VER = VVRR */ ++# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) ++# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) ++# if defined(_MSC_FULL_VER) ++# if _MSC_VER >= 1400 ++ /* _MSC_FULL_VER = VVRRPPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) ++# else ++ /* _MSC_FULL_VER = VVRRPPPP */ ++# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) ++# endif ++# endif ++# if defined(_MSC_BUILD) ++# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) ++# endif ++ ++#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) ++# define COMPILER_ID "ADSP" ++#if defined(__VISUALDSPVERSION__) ++ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ ++# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) ++# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) ++# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) ++#endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# define COMPILER_ID "IAR" ++# if defined(__VER__) && defined(__ICCARM__) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) ++# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) ++# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) ++# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) ++# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) ++# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) ++# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) ++# endif ++ ++ ++/* These compilers are either not known or too old to define an ++ identification macro. Try to identify the platform and guess that ++ it is the native compiler. */ ++#elif defined(__hpux) || defined(__hpua) ++# define COMPILER_ID "HP" ++ ++#else /* unknown compiler */ ++# define COMPILER_ID "" ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; ++#ifdef SIMULATE_ID ++char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; ++#endif ++ ++#ifdef __QNXNTO__ ++char const* qnxnto = "INFO" ":" "qnxnto[]"; ++#endif ++ ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; ++#endif ++ ++#define STRINGIFY_HELPER(X) #X ++#define STRINGIFY(X) STRINGIFY_HELPER(X) ++ ++/* Identify known platforms by name. */ ++#if defined(__linux) || defined(__linux__) || defined(linux) ++# define PLATFORM_ID "Linux" ++ ++#elif defined(__MSYS__) ++# define PLATFORM_ID "MSYS" ++ ++#elif defined(__CYGWIN__) ++# define PLATFORM_ID "Cygwin" ++ ++#elif defined(__MINGW32__) ++# define PLATFORM_ID "MinGW" ++ ++#elif defined(__APPLE__) ++# define PLATFORM_ID "Darwin" ++ ++#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) ++# define PLATFORM_ID "Windows" ++ ++#elif defined(__FreeBSD__) || defined(__FreeBSD) ++# define PLATFORM_ID "FreeBSD" ++ ++#elif defined(__NetBSD__) || defined(__NetBSD) ++# define PLATFORM_ID "NetBSD" ++ ++#elif defined(__OpenBSD__) || defined(__OPENBSD) ++# define PLATFORM_ID "OpenBSD" ++ ++#elif defined(__sun) || defined(sun) ++# define PLATFORM_ID "SunOS" ++ ++#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) ++# define PLATFORM_ID "AIX" ++ ++#elif defined(__hpux) || defined(__hpux__) ++# define PLATFORM_ID "HP-UX" ++ ++#elif defined(__HAIKU__) ++# define PLATFORM_ID "Haiku" ++ ++#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) ++# define PLATFORM_ID "BeOS" ++ ++#elif defined(__QNX__) || defined(__QNXNTO__) ++# define PLATFORM_ID "QNX" ++ ++#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) ++# define PLATFORM_ID "Tru64" ++ ++#elif defined(__riscos) || defined(__riscos__) ++# define PLATFORM_ID "RISCos" ++ ++#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) ++# define PLATFORM_ID "SINIX" ++ ++#elif defined(__UNIX_SV__) ++# define PLATFORM_ID "UNIX_SV" ++ ++#elif defined(__bsdos__) ++# define PLATFORM_ID "BSDOS" ++ ++#elif defined(_MPRAS) || defined(MPRAS) ++# define PLATFORM_ID "MP-RAS" ++ ++#elif defined(__osf) || defined(__osf__) ++# define PLATFORM_ID "OSF1" ++ ++#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) ++# define PLATFORM_ID "SCO_SV" ++ ++#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) ++# define PLATFORM_ID "ULTRIX" ++ ++#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) ++# define PLATFORM_ID "Xenix" ++ ++#elif defined(__WATCOMC__) ++# if defined(__LINUX__) ++# define PLATFORM_ID "Linux" ++ ++# elif defined(__DOS__) ++# define PLATFORM_ID "DOS" ++ ++# elif defined(__OS2__) ++# define PLATFORM_ID "OS2" ++ ++# elif defined(__WINDOWS__) ++# define PLATFORM_ID "Windows3x" ++ ++# elif defined(__VXWORKS__) ++# define PLATFORM_ID "VxWorks" ++ ++# else /* unknown platform */ ++# define PLATFORM_ID ++# endif ++ ++#elif defined(__INTEGRITY) ++# if defined(INT_178B) ++# define PLATFORM_ID "Integrity178" ++ ++# else /* regular Integrity */ ++# define PLATFORM_ID "Integrity" ++# endif ++ ++#else /* unknown platform */ ++# define PLATFORM_ID ++ ++#endif ++ ++/* For windows compilers MSVC and Intel we can determine ++ the architecture of the compiler being used. This is because ++ the compilers do not have flags that can change the architecture, ++ but rather depend on which compiler is being used ++*/ ++#if defined(_WIN32) && defined(_MSC_VER) ++# if defined(_M_IA64) ++# define ARCHITECTURE_ID "IA64" ++ ++# elif defined(_M_ARM64EC) ++# define ARCHITECTURE_ID "ARM64EC" ++ ++# elif defined(_M_X64) || defined(_M_AMD64) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# elif defined(_M_ARM64) ++# define ARCHITECTURE_ID "ARM64" ++ ++# elif defined(_M_ARM) ++# if _M_ARM == 4 ++# define ARCHITECTURE_ID "ARMV4I" ++# elif _M_ARM == 5 ++# define ARCHITECTURE_ID "ARMV5I" ++# else ++# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) ++# endif ++ ++# elif defined(_M_MIPS) ++# define ARCHITECTURE_ID "MIPS" ++ ++# elif defined(_M_SH) ++# define ARCHITECTURE_ID "SHx" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__WATCOMC__) ++# if defined(_M_I86) ++# define ARCHITECTURE_ID "I86" ++ ++# elif defined(_M_IX86) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) ++# if defined(__ICCARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__ICCRX__) ++# define ARCHITECTURE_ID "RX" ++ ++# elif defined(__ICCRH850__) ++# define ARCHITECTURE_ID "RH850" ++ ++# elif defined(__ICCRL78__) ++# define ARCHITECTURE_ID "RL78" ++ ++# elif defined(__ICCRISCV__) ++# define ARCHITECTURE_ID "RISCV" ++ ++# elif defined(__ICCAVR__) ++# define ARCHITECTURE_ID "AVR" ++ ++# elif defined(__ICC430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__ICCV850__) ++# define ARCHITECTURE_ID "V850" ++ ++# elif defined(__ICC8051__) ++# define ARCHITECTURE_ID "8051" ++ ++# elif defined(__ICCSTM8__) ++# define ARCHITECTURE_ID "STM8" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__ghs__) ++# if defined(__PPC64__) ++# define ARCHITECTURE_ID "PPC64" ++ ++# elif defined(__ppc__) ++# define ARCHITECTURE_ID "PPC" ++ ++# elif defined(__ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__x86_64__) ++# define ARCHITECTURE_ID "x64" ++ ++# elif defined(__i386__) ++# define ARCHITECTURE_ID "X86" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#elif defined(__TI_COMPILER_VERSION__) ++# if defined(__TI_ARM__) ++# define ARCHITECTURE_ID "ARM" ++ ++# elif defined(__MSP430__) ++# define ARCHITECTURE_ID "MSP430" ++ ++# elif defined(__TMS320C28XX__) ++# define ARCHITECTURE_ID "TMS320C28x" ++ ++# elif defined(__TMS320C6X__) || defined(_TMS320C6X) ++# define ARCHITECTURE_ID "TMS320C6x" ++ ++# else /* unknown architecture */ ++# define ARCHITECTURE_ID "" ++# endif ++ ++#else ++# define ARCHITECTURE_ID ++#endif ++ ++/* Convert integer to decimal digit literals. */ ++#define DEC(n) \ ++ ('0' + (((n) / 10000000)%10)), \ ++ ('0' + (((n) / 1000000)%10)), \ ++ ('0' + (((n) / 100000)%10)), \ ++ ('0' + (((n) / 10000)%10)), \ ++ ('0' + (((n) / 1000)%10)), \ ++ ('0' + (((n) / 100)%10)), \ ++ ('0' + (((n) / 10)%10)), \ ++ ('0' + ((n) % 10)) ++ ++/* Convert integer to hex digit literals. */ ++#define HEX(n) \ ++ ('0' + ((n)>>28 & 0xF)), \ ++ ('0' + ((n)>>24 & 0xF)), \ ++ ('0' + ((n)>>20 & 0xF)), \ ++ ('0' + ((n)>>16 & 0xF)), \ ++ ('0' + ((n)>>12 & 0xF)), \ ++ ('0' + ((n)>>8 & 0xF)), \ ++ ('0' + ((n)>>4 & 0xF)), \ ++ ('0' + ((n) & 0xF)) ++ ++/* Construct a string literal encoding the version number. */ ++#ifdef COMPILER_VERSION ++char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; ++ ++/* Construct a string literal encoding the version number components. */ ++#elif defined(COMPILER_VERSION_MAJOR) ++char const info_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', ++ COMPILER_VERSION_MAJOR, ++# ifdef COMPILER_VERSION_MINOR ++ '.', COMPILER_VERSION_MINOR, ++# ifdef COMPILER_VERSION_PATCH ++ '.', COMPILER_VERSION_PATCH, ++# ifdef COMPILER_VERSION_TWEAK ++ '.', COMPILER_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct a string literal encoding the internal version number. */ ++#ifdef COMPILER_VERSION_INTERNAL ++char const info_version_internal[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', ++ 'i','n','t','e','r','n','a','l','[', ++ COMPILER_VERSION_INTERNAL,']','\0'}; ++#elif defined(COMPILER_VERSION_INTERNAL_STR) ++char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; ++#endif ++ ++/* Construct a string literal encoding the version number components. */ ++#ifdef SIMULATE_VERSION_MAJOR ++char const info_simulate_version[] = { ++ 'I', 'N', 'F', 'O', ':', ++ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', ++ SIMULATE_VERSION_MAJOR, ++# ifdef SIMULATE_VERSION_MINOR ++ '.', SIMULATE_VERSION_MINOR, ++# ifdef SIMULATE_VERSION_PATCH ++ '.', SIMULATE_VERSION_PATCH, ++# ifdef SIMULATE_VERSION_TWEAK ++ '.', SIMULATE_VERSION_TWEAK, ++# endif ++# endif ++# endif ++ ']','\0'}; ++#endif ++ ++/* Construct the string literal in pieces to prevent the source from ++ getting matched. Store it in a pointer rather than an array ++ because some compilers will just produce instructions to fill the ++ array rather than assigning a pointer to a static array. */ ++char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; ++char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; ++ ++ ++ ++#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L ++# if defined(__INTEL_CXX11_MODE__) ++# if defined(__cpp_aggregate_nsdmi) ++# define CXX_STD 201402L ++# else ++# define CXX_STD 201103L ++# endif ++# else ++# define CXX_STD 199711L ++# endif ++#elif defined(_MSC_VER) && defined(_MSVC_LANG) ++# define CXX_STD _MSVC_LANG ++#else ++# define CXX_STD __cplusplus ++#endif ++ ++const char* info_language_standard_default = "INFO" ":" "standard_default[" ++#if CXX_STD > 202002L ++ "23" ++#elif CXX_STD > 201703L ++ "20" ++#elif CXX_STD >= 201703L ++ "17" ++#elif CXX_STD >= 201402L ++ "14" ++#elif CXX_STD >= 201103L ++ "11" ++#else ++ "98" ++#endif ++"]"; ++ ++const char* info_language_extensions_default = "INFO" ":" "extensions_default[" ++/* !defined(_MSC_VER) to exclude Clang's MSVC compatibility mode. */ ++#if (defined(__clang__) || defined(__GNUC__) || \ ++ defined(__TI_COMPILER_VERSION__)) && \ ++ !defined(__STRICT_ANSI__) && !defined(_MSC_VER) ++ "ON" ++#else ++ "OFF" ++#endif ++"]"; ++ ++/*--------------------------------------------------------------------------*/ ++ ++int main(int argc, char* argv[]) ++{ ++ int require = 0; ++ require += info_compiler[argc]; ++ require += info_platform[argc]; ++#ifdef COMPILER_VERSION_MAJOR ++ require += info_version[argc]; ++#endif ++#ifdef COMPILER_VERSION_INTERNAL ++ require += info_version_internal[argc]; ++#endif ++#ifdef SIMULATE_ID ++ require += info_simulate[argc]; ++#endif ++#ifdef SIMULATE_VERSION_MAJOR ++ require += info_simulate_version[argc]; ++#endif ++#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) ++ require += info_cray[argc]; ++#endif ++ require += info_language_standard_default[argc]; ++ require += info_language_extensions_default[argc]; ++ (void)argv; ++ return require; ++} +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o +new file mode 100644 +index 0000000..f2c4207 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeOutput.log b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeOutput.log +new file mode 100644 +index 0000000..22b7a39 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeOutput.log +@@ -0,0 +1,258 @@ ++The target system is: Android - 1 - x86_64 ++The host system is: Darwin - 24.6.0 - arm64 ++Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security; ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" ++ ++The C compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.o" ++ ++Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. ++Compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ ++Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D__BIONIC_NO_PAGE_SIZE_MACRO;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security;;-O2;-frtti;-fexceptions;-Wall;-Wno-unused-variable;-fstack-protector-all ++Id flags: -c;--target=x86_64-none-linux-android24 ++ ++The output was: ++0 ++ ++ ++Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" ++ ++The CXX compiler identification is Clang, found in "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.o" ++ ++Detecting C compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_97754 && [1/2] Building C object CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking C executable cmTC_97754 ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_97754 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed C implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed C implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_97754 && [1/2] Building C object CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang" -cc1 -triple x86_64-none-linux-android24 -emit-obj -mrelax-all -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -Wformat -ferror-limit 19 -femulated-tls -stack-protector 2 -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o -x c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking C executable cmTC_97754] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_97754 /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_97754] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_97754.dir/CMakeCCompilerABI.c.o] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ ++Detecting CXX compiler ABI info compiled with the following output: ++Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp ++ ++Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5adfd && [1/2] Building CXX object CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ (in-process) ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=none -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -Wno-unused-variable -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 3 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp ++clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0 ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include" ++ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include" ++#include "..." search starts here: ++#include <...> search starts here: ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android ++ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include ++End of search list. ++[2/2] Linking CXX executable cmTC_5adfd ++Android (12285214, +pgo, -bolt, +lto, -mlgo, based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262) ++Target: x86_64-none-linux-android24 ++Thread model: posix ++InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin ++ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_5adfd /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o ++ ++ ++ ++Parsed CXX implicit include dir info from above output: rv=done ++ found start of include info ++ found start of implicit include info ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ add: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ end of search list found ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ collapse include dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ implicit include dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ++ ++Parsed CXX implicit link information from above output: ++ link line regex: [^( *|.*[/\])(ld\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ++ ignore line: [Change Dir: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp] ++ ignore line: [] ++ ignore line: [Run Build Command(s):/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja cmTC_5adfd && [1/2] Building CXX object CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ ignore line: [ (in-process)] ++ ignore line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++" -cc1 -triple x86_64-none-linux-android24 -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=none -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -target-feature +sse4.2 -target-feature +popcnt -target-feature +cx16 -tune-cpu generic -debug-info-kind=constructor -dwarf-version=4 -debugger-tuning=gdb -fdebug-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/CMakeTmp -resource-dir /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18 -dependency-file CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D ANDROID -D __BIONIC_NO_PAGE_SIZE_MACRO -D _FORTIFY_SOURCE=2 -isysroot /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1 -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include -internal-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include -internal-externc-isystem /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include -O2 -Wformat -Wall -Wno-unused-variable -fdeprecated-macro -ferror-limit 19 -femulated-tls -stack-protector 3 -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -vectorize-loops -vectorize-slp -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp] ++ ignore line: [clang -cc1 version 18.0.2 based upon LLVM 18.0.2 default target x86_64-apple-darwin24.6.0] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/local/include"] ++ ignore line: [ignoring nonexistent directory "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/include"] ++ ignore line: [#include "..." search starts here:] ++ ignore line: [#include <...> search starts here:] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/c++/v1] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/include] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include/x86_64-linux-android] ++ ignore line: [ /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/include] ++ ignore line: [End of search list.] ++ ignore line: [[2/2] Linking CXX executable cmTC_5adfd] ++ ignore line: [Android (12285214 +pgo -bolt +lto -mlgo based on r522817b) clang version 18.0.2 (https://android.googlesource.com/toolchain/llvm-project d8003a456d14a3deb8054cdaa529ffbf02d9b262)] ++ ignore line: [Target: x86_64-none-linux-android24] ++ ignore line: [Thread model: posix] ++ ignore line: [InstalledDir: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin] ++ link line: [ "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld" --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -z now -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /system/bin/linker64 -o cmTC_5adfd /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24 -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android -L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib -z max-page-size=16384 --build-id=sha1 --no-rosegment --no-undefined-version --fatal-warnings --no-undefined CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lm /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl -lc /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a -l:libunwind.a -ldl /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/ld.lld] ==> ignore ++ arg [--sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot] ==> ignore ++ arg [-znow] ==> ignore ++ arg [-zrelro] ==> ignore ++ arg [--hash-style=gnu] ==> ignore ++ arg [--eh-frame-hdr] ==> ignore ++ arg [-m] ==> ignore ++ arg [elf_x86_64] ==> ignore ++ arg [-pie] ==> ignore ++ arg [-dynamic-linker] ==> ignore ++ arg [/system/bin/linker64] ==> ignore ++ arg [-o] ==> ignore ++ arg [cmTC_5adfd] ==> ignore ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ arg [-L/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ arg [-zmax-page-size=16384] ==> ignore ++ arg [--build-id=sha1] ==> ignore ++ arg [--no-rosegment] ==> ignore ++ arg [--no-undefined-version] ==> ignore ++ arg [--fatal-warnings] ==> ignore ++ arg [--no-undefined] ==> ignore ++ arg [CMakeFiles/cmTC_5adfd.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore ++ arg [-lc++] ==> lib [c++] ++ arg [-lm] ==> lib [m] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [-lc] ==> lib [c] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ==> lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ arg [-l:libunwind.a] ==> lib [-l:libunwind.a] ++ arg [-ldl] ==> lib [dl] ++ arg [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ==> obj [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ remove lib [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/libclang_rt.builtins-x86_64-android.a] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android] ++ collapse library dir [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ==> [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit libs: [c++;m;-l:libunwind.a;dl;c;-l:libunwind.a;dl] ++ implicit objs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtbegin_dynamic.o;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/crtend_android.o] ++ implicit dirs: [/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/lib/clang/18/lib/linux/x86_64;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android;/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib] ++ implicit fwks: [] ++ ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/TargetDirectories.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/TargetDirectories.txt +new file mode 100644 +index 0000000..b5de968 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/TargetDirectories.txt +@@ -0,0 +1,3 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/edit_cache.dir ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/rebuild_cache.dir +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o +new file mode 100644 +index 0000000..ef32b5e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o +new file mode 100644 +index 0000000..d368fbe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o +new file mode 100644 +index 0000000..acc9a2f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o +new file mode 100644 +index 0000000..9cdbe3e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o +new file mode 100644 +index 0000000..3f27712 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o +new file mode 100644 +index 0000000..325e4b5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o +new file mode 100644 +index 0000000..8b16f7a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o +new file mode 100644 +index 0000000..0a1e634 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o +new file mode 100644 +index 0000000..db5224a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o +new file mode 100644 +index 0000000..e2e946f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o +new file mode 100644 +index 0000000..5a3d09c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o +new file mode 100644 +index 0000000..e81fe19 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/cmake.check_cache b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/cmake.check_cache +new file mode 100644 +index 0000000..3dccd73 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/cmake.check_cache +@@ -0,0 +1 @@ ++# This file is generated by cmake for dependency checking of the CMakeCache.txt file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/rules.ninja b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/rules.ninja +new file mode 100644 +index 0000000..8e36f46 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/CMakeFiles/rules.ninja +@@ -0,0 +1,64 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the rules used to get the outputs files ++# built from the input files. ++# It is included in the main 'build.ninja'. ++ ++# ============================================================================= ++# Project: VisionCamera ++# Configurations: Debug ++# ============================================================================= ++# ============================================================================= ++ ++############################################# ++# Rule for compiling CXX files. ++ ++rule CXX_COMPILER__VisionCamera_Debug ++ depfile = $DEP_FILE ++ deps = gcc ++ command = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in ++ description = Building CXX object $out ++ ++ ++############################################# ++# Rule for linking CXX shared library. ++ ++rule CXX_SHARED_LIBRARY_LINKER__VisionCamera_Debug ++ command = $PRE_LINK && /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD ++ description = Linking CXX shared library $TARGET_FILE ++ restat = $RESTAT ++ ++ ++############################################# ++# Rule for running custom commands. ++ ++rule CUSTOM_COMMAND ++ command = $COMMAND ++ description = $DESC ++ ++ ++############################################# ++# Rule for re-running cmake. ++ ++rule RERUN_CMAKE ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++ description = Re-running CMake... ++ generator = 1 ++ ++ ++############################################# ++# Rule for cleaning all built files. ++ ++rule CLEAN ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja $FILE_ARG -t clean $TARGETS ++ description = Cleaning all built files... ++ ++ ++############################################# ++# Rule for printing all primary targets available. ++ ++rule HELP ++ command = /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja -t targets ++ description = All primary targets available: ++ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/additional_project_files.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/additional_project_files.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build.json +new file mode 100644 +index 0000000..1916d29 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build.json +@@ -0,0 +1,46 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "VisionCamera::@6890427a1f51a3e7e1df": { ++ "toolchain": "toolchain", ++ "abi": "x86_64", ++ "artifactName": "VisionCamera", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ ] ++ } ++ }, ++ "toolchains": { ++ "toolchain": { ++ "cCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang.lld", ++ "cppCompilerExecutable": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++.lld" ++ } ++ }, ++ "cFileExtensions": [], ++ "cppFileExtensions": [ ++ "cpp" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build_mini.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build_mini.json +new file mode 100644 +index 0000000..e0f713f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build_mini.json +@@ -0,0 +1,35 @@ ++{ ++ "buildFiles": [ ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt" ++ ], ++ "cleanCommandsComponents": [ ++ [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "clean" ++ ] ++ ], ++ "buildTargetsCommandComponents": [ ++ "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-C", ++ "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "{LIST_OF_TARGETS_TO_BUILD}" ++ ], ++ "libraries": { ++ "VisionCamera::@6890427a1f51a3e7e1df": { ++ "artifactName": "VisionCamera", ++ "abi": "x86_64", ++ "output": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so", ++ "runtimeFiles": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so" ++ ] ++ } ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build.ninja b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build.ninja +new file mode 100644 +index 0000000..402f2e6 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build.ninja +@@ -0,0 +1,266 @@ ++# CMAKE generated file: DO NOT EDIT! ++# Generated by "Ninja" Generator, CMake Version 3.22 ++ ++# This file contains all the build statements describing the ++# compilation DAG. ++ ++# ============================================================================= ++# Write statements declared in CMakeLists.txt: ++# ++# Which is the root file. ++# ============================================================================= ++ ++# ============================================================================= ++# Project: VisionCamera ++# Configurations: Debug ++# ============================================================================= ++ ++############################################# ++# Minimal version of Ninja required by this file ++ ++ninja_required_version = 1.5 ++ ++ ++############################################# ++# Set configuration variable for custom commands. ++ ++CONFIGURATION = Debug ++# ============================================================================= ++# Include auxiliary files. ++ ++ ++############################################# ++# Include rules file. ++ ++include CMakeFiles/rules.ninja ++ ++# ============================================================================= ++ ++############################################# ++# Logical path to working directory; prefix for absolute paths. ++ ++cmake_ninja_workdir = /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/ ++# ============================================================================= ++# Object build statements for SHARED_LIBRARY target VisionCamera ++ ++ ++############################################# ++# Order-only phony target for VisionCamera ++ ++build cmake_object_order_depends_target_VisionCamera: phony || CMakeFiles/VisionCamera.dir ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++build CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o: CXX_COMPILER__VisionCamera_Debug /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp || cmake_object_order_depends_target_VisionCamera ++ DEFINES = -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS ++ DEP_FILE = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o.d ++ FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC ++ INCLUDES = -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ OBJECT_FILE_DIR = CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++ ++# ============================================================================= ++# Link build statements for SHARED_LIBRARY target VisionCamera ++ ++ ++############################################# ++# Link the shared library ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so ++ ++build ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so: CXX_SHARED_LIBRARY_LINKER__VisionCamera_Debug CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o | /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/liblog.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so ++ LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info ++ LINK_FLAGS = -Wl,-z,max-page-size=16384 -Wl,--build-id=sha1 -Wl,--no-rosegment -Wl,--no-undefined-version -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments -Wl,-z,max-page-size=16384 ++ LINK_LIBRARIES = /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/24/liblog.so -landroid /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/libs/android.x86_64/libjsi.so /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/libs/android.x86_64/libfbjni.so /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/libs/android.x86_64/libreactnative.so -latomic -lm ++ OBJECT_DIR = CMakeFiles/VisionCamera.dir ++ POST_BUILD = : ++ PRE_LINK = : ++ SONAME = libVisionCamera.so ++ SONAME_FLAG = -Wl,-soname, ++ TARGET_COMPILE_PDB = CMakeFiles/VisionCamera.dir/ ++ TARGET_FILE = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so ++ TARGET_PDB = ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.pdb ++ ++ ++############################################# ++# Utility command for edit_cache ++ ++build CMakeFiles/edit_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ccmake -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++ DESC = Running CMake cache editor... ++ pool = console ++ restat = 1 ++ ++build edit_cache: phony CMakeFiles/edit_cache.util ++ ++ ++############################################# ++# Utility command for rebuild_cache ++ ++build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND ++ COMMAND = cd /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 && /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake --regenerate-during-build -S/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++ DESC = Running CMake to regenerate build system... ++ pool = console ++ restat = 1 ++ ++build rebuild_cache: phony CMakeFiles/rebuild_cache.util ++ ++# ============================================================================= ++# Target aliases. ++ ++build VisionCamera: phony ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so ++ ++build libVisionCamera.so: phony ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so ++ ++# ============================================================================= ++# Folder targets. ++ ++# ============================================================================= ++ ++############################################# ++# Folder: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++ ++build all: phony ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so ++ ++# ============================================================================= ++# Built-in targets ++ ++ ++############################################# ++# Re-run CMake if any of its inputs changed. ++ ++build build.ninja: RERUN_CMAKE | ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake ++ pool = console ++ ++ ++############################################# ++# A missing CMake input file is not an error. ++ ++build ../../../../CMakeLists.txt ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ../prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCCompilerABI.c /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompiler.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXCompilerABI.cpp /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCXXInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCommonLanguageInclude.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeCompilerIdDetection.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompileFeatures.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerABI.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineCompilerId.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeDetermineSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeFindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeGenericSystem.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeLanguageInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitIncludeInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseImplicitLinkInfo.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeParseLibraryArchitecture.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystem.cmake.in /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCXXCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/CMakeTestCompilerCommon.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ADSP-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMCC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/ARMClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/AppleClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Borland-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/CMakeCommonCompilerMacros.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang-FindBinUtils.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Cray-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GHS-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/GNU.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IAR-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Intel-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/MSVC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVHPC-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PGI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/PathScale-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SCO-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TI-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/Watcom-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-C-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Internal/FeatureTesting.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-C.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine-CXX.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Android/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/Linux.cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/share/cmake-3.22/Modules/Platform/UnixPaths.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/abis.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android-legacy.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/flags.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Clang.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Determine.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android-Initialize.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Android.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/hooks/pre/Determine-Compiler.cmake /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.22.1-g37088a8/CMakeCCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeCXXCompiler.cmake CMakeFiles/3.22.1-g37088a8/CMakeSystem.cmake: phony ++ ++ ++############################################# ++# Clean all the built files. ++ ++build clean: CLEAN ++ ++ ++############################################# ++# Print all primary targets available. ++ ++build help: HELP ++ ++ ++############################################# ++# Make the all target the default. ++ ++default all +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build_file_index.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build_file_index.txt +new file mode 100644 +index 0000000..273d916 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build_file_index.txt +@@ -0,0 +1,5 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/ReactAndroid/ReactAndroidConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfig.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab/lib/x86_64-linux-android/cmake/fbjni/fbjniConfigVersion.cmake ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/cmake_install.cmake b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/cmake_install.cmake +new file mode 100644 +index 0000000..2285db3 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/cmake_install.cmake +@@ -0,0 +1,54 @@ ++# Install script for directory: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++ ++# Set the install prefix ++if(NOT DEFINED CMAKE_INSTALL_PREFIX) ++ set(CMAKE_INSTALL_PREFIX "/usr/local") ++endif() ++string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") ++ ++# Set the install configuration name. ++if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) ++ if(BUILD_TYPE) ++ string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" ++ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") ++ else() ++ set(CMAKE_INSTALL_CONFIG_NAME "Debug") ++ endif() ++ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") ++endif() ++ ++# Set the component getting installed. ++if(NOT CMAKE_INSTALL_COMPONENT) ++ if(COMPONENT) ++ message(STATUS "Install component: \"${COMPONENT}\"") ++ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") ++ else() ++ set(CMAKE_INSTALL_COMPONENT) ++ endif() ++endif() ++ ++# Install shared libraries without execute permission? ++if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) ++ set(CMAKE_INSTALL_SO_NO_EXE "0") ++endif() ++ ++# Is this installation the result of a crosscompile? ++if(NOT DEFINED CMAKE_CROSSCOMPILING) ++ set(CMAKE_CROSSCOMPILING "TRUE") ++endif() ++ ++# Set default install directory permissions. ++if(NOT DEFINED CMAKE_OBJDUMP) ++ set(CMAKE_OBJDUMP "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/llvm-objdump") ++endif() ++ ++if(CMAKE_INSTALL_COMPONENT) ++ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") ++else() ++ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") ++endif() ++ ++string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT ++ "${CMAKE_INSTALL_MANIFEST_FILES}") ++file(WRITE "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/${CMAKE_INSTALL_MANIFEST}" ++ "${CMAKE_INSTALL_MANIFEST_CONTENT}") +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json +new file mode 100644 +index 0000000..3eb6cb3 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json +@@ -0,0 +1,62 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json.bin +new file mode 100644 +index 0000000..935e942 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json.bin differ +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/configure_fingerprint.bin b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/configure_fingerprint.bin +new file mode 100644 +index 0000000..dcce9a9 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/configure_fingerprint.bin +@@ -0,0 +1,28 @@ ++C/C++ Structured Log ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/additional_project_files.txtC ++A ++?com.android.build.gradle.internal.cxx.io.EncodedFileFingerPrint  ۺ3  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build.json  ۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build_mini.json  ۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build.ninja  ۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build.ninja.txt  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/build_file_index.txt  ۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json  ۺ3 ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json.bin  ۺ3 / ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/metadata_generation_command.txt  ۺ3 ++ ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/prefab_config.json  ۺ3  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/symbol_folder_index.txt  ۺ3  ۺ3 ++ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt  ۺ3  ı3 +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/metadata_generation_command.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/metadata_generation_command.txt +new file mode 100644 +index 0000000..3bc119c +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/metadata_generation_command.txt +@@ -0,0 +1,25 @@ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android ++-DCMAKE_SYSTEM_NAME=Android ++-DCMAKE_EXPORT_COMPILE_COMMANDS=ON ++-DCMAKE_SYSTEM_VERSION=24 ++-DANDROID_PLATFORM=android-24 ++-DANDROID_ABI=x86_64 ++-DCMAKE_ANDROID_ARCH_ABI=x86_64 ++-DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 ++-DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake ++-DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja ++-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all ++-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 ++-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 ++-DCMAKE_BUILD_TYPE=Debug ++-DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab ++-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 ++-GNinja ++-DANDROID_STL=c++_shared ++-DNODE_MODULES_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules ++-DENABLE_FRAME_PROCESSORS=OFF ++-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON ++-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 ++ Build command args: [] ++ Version: 2 +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/prefab_config.json b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/prefab_config.json +new file mode 100644 +index 0000000..66a2ab0 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/prefab_config.json +@@ -0,0 +1,8 @@ ++{ ++ "enabled": true, ++ "prefabPath": "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar", ++ "packages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/symbol_folder_index.txt b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/symbol_folder_index.txt +new file mode 100644 +index 0000000..cbbfc7f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/symbol_folder_index.txt +@@ -0,0 +1 @@ ++/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/tools/debug/arm64-v8a/compile_commands.json b/node_modules/react-native-vision-camera/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +new file mode 100644 +index 0000000..cea68be +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/tools/debug/arm64-v8a/compile_commands.json +@@ -0,0 +1,62 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=aarch64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/.cxx/tools/debug/x86_64/compile_commands.json b/node_modules/react-native-vision-camera/android/.cxx/tools/debug/x86_64/compile_commands.json +new file mode 100644 +index 0000000..3eb6cb3 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/.cxx/tools/debug/x86_64/compile_commands.json +@@ -0,0 +1,62 @@ ++[ ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/VisionCamera.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/MutableJByteBuffer.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/JSIJNIConversion.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/VisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp" ++}, ++{ ++ "directory": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "command": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ --target=x86_64-none-linux-android24 --sysroot=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES -DVISION_CAMERA_ENABLE_FRAME_PROCESSORS=false -DVisionCamera_EXPORTS -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactCommon/callinvoker -I/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native/ReactAndroid/src/main/jni/react/turbomodule -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/jsi/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab/modules/fbjni/include -isystem /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab/modules/reactnative/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D__BIONIC_NO_PAGE_SIZE_MACRO -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -fno-limit-debug-info -fPIC -o CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o -c /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp", ++ "file": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp" ++} ++] +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build.gradle b/node_modules/react-native-vision-camera/android/build.gradle +index b1d9973..7d7f7f7 100644 +--- a/node_modules/react-native-vision-camera/android/build.gradle ++++ b/node_modules/react-native-vision-camera/android/build.gradle +@@ -110,6 +110,7 @@ android { + } + + buildFeatures { ++ buildConfig = true + prefab true + prefabPublishing true + } +@@ -134,7 +135,8 @@ android { + arguments "-DANDROID_STL=c++_shared", + "-DNODE_MODULES_DIR=${nodeModules}", + "-DENABLE_FRAME_PROCESSORS=${enableFrameProcessors ? "ON" : "OFF"}", +- "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON" ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON", ++ "-DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384" + abiFilters (*reactNativeArchitectures()) + } + } +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/14c1f354e1b8246bfebb8e120df77c99/results.bin b/node_modules/react-native-vision-camera/android/build/.transforms/14c1f354e1b8246bfebb8e120df77c99/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/.transforms/14c1f354e1b8246bfebb8e120df77c99/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/14c1f354e1b8246bfebb8e120df77c99/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-vision-camera/android/build/.transforms/14c1f354e1b8246bfebb8e120df77c99/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..2e8c464 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/14c1f354e1b8246bfebb8e120df77c99/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/results.bin b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/results.bin +new file mode 100644 +index 0000000..7ed749e +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirDebug +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/BuildConfig.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/BuildConfig.dex +new file mode 100644 +index 0000000..c3f7ec6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/BuildConfig.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.dex +new file mode 100644 +index 0000000..d0f567a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Audio.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Audio.dex +new file mode 100644 +index 0000000..42cfb89 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Audio.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.dex +new file mode 100644 +index 0000000..01a58af +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Companion.dex +new file mode 100644 +index 0000000..7b0eafd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Difference.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Difference.dex +new file mode 100644 +index 0000000..47de445 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Difference.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.dex +new file mode 100644 +index 0000000..ea35741 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.dex +new file mode 100644 +index 0000000..fd1de7d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.dex +new file mode 100644 +index 0000000..9c3b090 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.dex +new file mode 100644 +index 0000000..56c32b3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.dex +new file mode 100644 +index 0000000..9734bd4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output.dex +new file mode 100644 +index 0000000..51054e7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Output.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Photo.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Photo.dex +new file mode 100644 +index 0000000..3fa9691 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Photo.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Preview.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Preview.dex +new file mode 100644 +index 0000000..ab8b3ce +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Preview.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Video.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Video.dex +new file mode 100644 +index 0000000..e2870f3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration$Video.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration.dex +new file mode 100644 +index 0000000..9d2ae03 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraConfiguration.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraDeviceDetails$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraDeviceDetails$Companion.dex +new file mode 100644 +index 0000000..b656295 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraDeviceDetails$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraDeviceDetails.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraDeviceDetails.dex +new file mode 100644 +index 0000000..ede775b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraDeviceDetails.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraError.dex +new file mode 100644 +index 0000000..d43f39b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraErrorKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraErrorKt.dex +new file mode 100644 +index 0000000..da9d966 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraErrorKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraInUseError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraInUseError.dex +new file mode 100644 +index 0000000..7ce83bf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraInUseError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraIsRestrictedError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraIsRestrictedError.dex +new file mode 100644 +index 0000000..f4d682d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraIsRestrictedError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraNotReadyError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraNotReadyError.dex +new file mode 100644 +index 0000000..a22b290 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraNotReadyError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraPermissionError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraPermissionError.dex +new file mode 100644 +index 0000000..8dd2919 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraPermissionError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues$CameraQueue.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues$CameraQueue.dex +new file mode 100644 +index 0000000..a35cca6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues$CameraQueue.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues$Companion.dex +new file mode 100644 +index 0000000..28eaa1b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues.dex +new file mode 100644 +index 0000000..895511f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraQueues.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$1.dex +new file mode 100644 +index 0000000..c286a30 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$Callback.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$Callback.dex +new file mode 100644 +index 0000000..41c331c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$Callback.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$Companion.dex +new file mode 100644 +index 0000000..abf71db +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.dex +new file mode 100644 +index 0000000..e55be67 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$configure$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$configure$1.dex +new file mode 100644 +index 0000000..4958c82 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession$configure$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession.dex +new file mode 100644 +index 0000000..72fbc49 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.dex +new file mode 100644 +index 0000000..590d844 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.dex +new file mode 100644 +index 0000000..01012d0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt.dex +new file mode 100644 +index 0000000..201bfc0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_ConfigurationKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.dex +new file mode 100644 +index 0000000..dbec4dc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_FocusKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_FocusKt.dex +new file mode 100644 +index 0000000..0593f8b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_FocusKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.dex +new file mode 100644 +index 0000000..8b79f88 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_PhotoKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_PhotoKt.dex +new file mode 100644 +index 0000000..27aa242 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_PhotoKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_VideoKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_VideoKt.dex +new file mode 100644 +index 0000000..ca5d0f1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CameraSession_VideoKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerFrame.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerFrame.dex +new file mode 100644 +index 0000000..e5c6c79 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerFrame.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerPipeline$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerPipeline$Companion.dex +new file mode 100644 +index 0000000..9655629 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerPipeline$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerPipeline.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerPipeline.dex +new file mode 100644 +index 0000000..2f382df +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeScannerPipeline.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeTypeNotSupportedError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeTypeNotSupportedError.dex +new file mode 100644 +index 0000000..91e4916 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/CodeTypeNotSupportedError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/DoNotDisturbBugError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/DoNotDisturbBugError.dex +new file mode 100644 +index 0000000..78426b9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/DoNotDisturbBugError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/DurationLimitReachedError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/DurationLimitReachedError.dex +new file mode 100644 +index 0000000..f1a4b7e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/DurationLimitReachedError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/EncoderError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/EncoderError.dex +new file mode 100644 +index 0000000..0b59a78 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/EncoderError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FatalCameraError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FatalCameraError.dex +new file mode 100644 +index 0000000..e7acbce +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FatalCameraError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FileIOError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FileIOError.dex +new file mode 100644 +index 0000000..3fae282 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FileIOError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FileSizeLimitReachedError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FileSizeLimitReachedError.dex +new file mode 100644 +index 0000000..6a7f046 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FileSizeLimitReachedError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FlashUnavailableError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FlashUnavailableError.dex +new file mode 100644 +index 0000000..ea23960 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FlashUnavailableError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusCanceledError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusCanceledError.dex +new file mode 100644 +index 0000000..45e7623 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusCanceledError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusNotSupportedError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusNotSupportedError.dex +new file mode 100644 +index 0000000..2ec69c4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusNotSupportedError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusRequiresPreviewError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusRequiresPreviewError.dex +new file mode 100644 +index 0000000..cb1cd05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FocusRequiresPreviewError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FrameInvalidError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FrameInvalidError.dex +new file mode 100644 +index 0000000..8eaeeca +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FrameInvalidError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FrameProcessorPipeline.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FrameProcessorPipeline.dex +new file mode 100644 +index 0000000..83f634e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/FrameProcessorPipeline.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.dex +new file mode 100644 +index 0000000..77d889c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InsufficientStorageForRecorderError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InsufficientStorageForRecorderError.dex +new file mode 100644 +index 0000000..3c3d047 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InsufficientStorageForRecorderError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidFpsError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidFpsError.dex +new file mode 100644 +index 0000000..0bb19a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidFpsError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidImageTypeError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidImageTypeError.dex +new file mode 100644 +index 0000000..c71cfd0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidImageTypeError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidOutputConfigurationError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidOutputConfigurationError.dex +new file mode 100644 +index 0000000..78b9266 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidOutputConfigurationError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidPathError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidPathError.dex +new file mode 100644 +index 0000000..18a25ab +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidPathError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidRecorderConfigurationError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidRecorderConfigurationError.dex +new file mode 100644 +index 0000000..b2286fb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidRecorderConfigurationError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidTypeScriptUnionError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidTypeScriptUnionError.dex +new file mode 100644 +index 0000000..1131085 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidTypeScriptUnionError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidVideoHdrError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidVideoHdrError.dex +new file mode 100644 +index 0000000..7db969f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidVideoHdrError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidVideoStabilizationMode.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidVideoStabilizationMode.dex +new file mode 100644 +index 0000000..02e7f24 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/InvalidVideoStabilizationMode.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/LocationPermissionError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/LocationPermissionError.dex +new file mode 100644 +index 0000000..ab0f559 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/LocationPermissionError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.dex +new file mode 100644 +index 0000000..72d711b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MaxCamerasInUseError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MaxCamerasInUseError.dex +new file mode 100644 +index 0000000..d2f90d5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MaxCamerasInUseError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MetadataProvider$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MetadataProvider$Companion.dex +new file mode 100644 +index 0000000..5f55dfd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MetadataProvider$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MetadataProvider.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MetadataProvider.dex +new file mode 100644 +index 0000000..0bcb6f4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MetadataProvider.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MicrophonePermissionError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MicrophonePermissionError.dex +new file mode 100644 +index 0000000..45e6305 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/MicrophonePermissionError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoCameraDeviceError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoCameraDeviceError.dex +new file mode 100644 +index 0000000..4c1fa20 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoCameraDeviceError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoDataError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoDataError.dex +new file mode 100644 +index 0000000..4da84fd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoDataError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoOutputsError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoOutputsError.dex +new file mode 100644 +index 0000000..c98e677 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoOutputsError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoRecordingInProgressError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoRecordingInProgressError.dex +new file mode 100644 +index 0000000..e4ea7da +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/NoRecordingInProgressError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$Callback.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$Callback.dex +new file mode 100644 +index 0000000..d056b30 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$Callback.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$Companion.dex +new file mode 100644 +index 0000000..83f91cd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$WhenMappings.dex +new file mode 100644 +index 0000000..16b2e11 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$displayListener$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$displayListener$1.dex +new file mode 100644 +index 0000000..3f3a946 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$displayListener$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$orientationListener$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$orientationListener$1.dex +new file mode 100644 +index 0000000..2ab3077 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager$orientationListener$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager.dex +new file mode 100644 +index 0000000..0f4652f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/OrientationManager.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/Photo.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/Photo.dex +new file mode 100644 +index 0000000..a5c99be +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/Photo.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.dex +new file mode 100644 +index 0000000..9728f98 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PhotoNotEnabledError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PhotoNotEnabledError.dex +new file mode 100644 +index 0000000..661adbd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PhotoNotEnabledError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PixelFormatNotSupportedError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PixelFormatNotSupportedError.dex +new file mode 100644 +index 0000000..8a7b928 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PixelFormatNotSupportedError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.dex +new file mode 100644 +index 0000000..abea3b7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecorderError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecorderError.dex +new file mode 100644 +index 0000000..a422457 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecorderError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingCanceledError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingCanceledError.dex +new file mode 100644 +index 0000000..41ed409 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingCanceledError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingInProgressError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingInProgressError.dex +new file mode 100644 +index 0000000..238b224 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingInProgressError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.dex +new file mode 100644 +index 0000000..eee8ba1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecoverableError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecoverableError.dex +new file mode 100644 +index 0000000..bdecd78 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/RecoverableError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/SnapshotFailedError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/SnapshotFailedError.dex +new file mode 100644 +index 0000000..e9bc340 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/SnapshotFailedError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.dex +new file mode 100644 +index 0000000..a105202 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/UnknownCameraError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/UnknownCameraError.dex +new file mode 100644 +index 0000000..79ef429 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/UnknownCameraError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/UnknownRecorderError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/UnknownRecorderError.dex +new file mode 100644 +index 0000000..9688bb9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/UnknownRecorderError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/VideoNotEnabledError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/VideoNotEnabledError.dex +new file mode 100644 +index 0000000..192156f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/VideoNotEnabledError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/ViewNotFoundError.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/ViewNotFoundError.dex +new file mode 100644 +index 0000000..d970525 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/ViewNotFoundError.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraInfo_idKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraInfo_idKt.dex +new file mode 100644 +index 0000000..8d8a250 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraInfo_idKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.dex +new file mode 100644 +index 0000000..3d9b45e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.dex +new file mode 100644 +index 0000000..36953f4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.dex +new file mode 100644 +index 0000000..a0cb162 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.dex +new file mode 100644 +index 0000000..7516af3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.dex +new file mode 100644 +index 0000000..66cad19 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.dex +new file mode 100644 +index 0000000..d7f283b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.dex +new file mode 100644 +index 0000000..65a8385 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.dex +new file mode 100644 +index 0000000..df8997f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.dex +new file mode 100644 +index 0000000..07a9986 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/PhotoFileInfo.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/PhotoFileInfo.dex +new file mode 100644 +index 0000000..7219606 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/PhotoFileInfo.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.dex +new file mode 100644 +index 0000000..da567dc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.dex +new file mode 100644 +index 0000000..51b2be8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.dex +new file mode 100644 +index 0000000..b4ae673 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.dex +new file mode 100644 +index 0000000..ffb7cbd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.dex +new file mode 100644 +index 0000000..3317cb6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/AutoFocusSystem.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/AutoFocusSystem.dex +new file mode 100644 +index 0000000..fac4d98 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/AutoFocusSystem.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.dex +new file mode 100644 +index 0000000..5485142 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CameraDeviceFormat.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CameraDeviceFormat.dex +new file mode 100644 +index 0000000..ff4bcc9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CameraDeviceFormat.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.dex +new file mode 100644 +index 0000000..94283f8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeScannerOptions.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeScannerOptions.dex +new file mode 100644 +index 0000000..28c00cb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeScannerOptions.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType$Companion.dex +new file mode 100644 +index 0000000..bf84d28 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType$WhenMappings.dex +new file mode 100644 +index 0000000..2ed5ce9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType.dex +new file mode 100644 +index 0000000..292106c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/CodeType.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/DeviceType.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/DeviceType.dex +new file mode 100644 +index 0000000..5d0c074 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/DeviceType.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash$Companion.dex +new file mode 100644 +index 0000000..1456134 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash$WhenMappings.dex +new file mode 100644 +index 0000000..42dd9b8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash.dex +new file mode 100644 +index 0000000..198d0f4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Flash.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel$Companion.dex +new file mode 100644 +index 0000000..8bda044 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.dex +new file mode 100644 +index 0000000..1ede8ed +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel.dex +new file mode 100644 +index 0000000..f1c8d42 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/HardwareLevel.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/JSUnionValue$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/JSUnionValue$Companion.dex +new file mode 100644 +index 0000000..2d67d99 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/JSUnionValue$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/JSUnionValue.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/JSUnionValue.dex +new file mode 100644 +index 0000000..dc40eca +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/JSUnionValue.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation$Companion.dex +new file mode 100644 +index 0000000..1eba4b0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation$WhenMappings.dex +new file mode 100644 +index 0000000..2e0b242 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation.dex +new file mode 100644 +index 0000000..d1d4f2b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Orientation.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/OutputOrientation$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/OutputOrientation$Companion.dex +new file mode 100644 +index 0000000..5dbe6b5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/OutputOrientation$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/OutputOrientation.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/OutputOrientation.dex +new file mode 100644 +index 0000000..50b9d2c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/OutputOrientation.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PermissionStatus$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PermissionStatus$Companion.dex +new file mode 100644 +index 0000000..ce98dfd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PermissionStatus$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PermissionStatus.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PermissionStatus.dex +new file mode 100644 +index 0000000..48c138d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PermissionStatus.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat$Companion.dex +new file mode 100644 +index 0000000..7ec6d8d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.dex +new file mode 100644 +index 0000000..171e9c6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat.dex +new file mode 100644 +index 0000000..ab50f9f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PixelFormat.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Position$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Position$Companion.dex +new file mode 100644 +index 0000000..aa09c3c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Position$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Position.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Position.dex +new file mode 100644 +index 0000000..b20276d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Position.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType$Companion.dex +new file mode 100644 +index 0000000..602d8a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.dex +new file mode 100644 +index 0000000..97392ba +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType.dex +new file mode 100644 +index 0000000..9bba74b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/PreviewViewType.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance$Companion.dex +new file mode 100644 +index 0000000..a1156cc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.dex +new file mode 100644 +index 0000000..f296832 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance.dex +new file mode 100644 +index 0000000..39a85ba +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/QualityBalance.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.dex +new file mode 100644 +index 0000000..6c6fa0f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/RecordVideoOptions.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/RecordVideoOptions.dex +new file mode 100644 +index 0000000..61558a8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/RecordVideoOptions.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode$Companion.dex +new file mode 100644 +index 0000000..fad256c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.dex +new file mode 100644 +index 0000000..576a30d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode.dex +new file mode 100644 +index 0000000..477f112 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ResizeMode.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ShutterType.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ShutterType.dex +new file mode 100644 +index 0000000..11d16a8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/ShutterType.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.dex +new file mode 100644 +index 0000000..7c53a66 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakePhotoOptions.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakePhotoOptions.dex +new file mode 100644 +index 0000000..d988f29 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakePhotoOptions.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.dex +new file mode 100644 +index 0000000..5ba6ac2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakeSnapshotOptions.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakeSnapshotOptions.dex +new file mode 100644 +index 0000000..cbed7de +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/TakeSnapshotOptions.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Torch$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Torch$Companion.dex +new file mode 100644 +index 0000000..0e3910a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Torch$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Torch.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Torch.dex +new file mode 100644 +index 0000000..176f29a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Torch.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Video.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Video.dex +new file mode 100644 +index 0000000..e3df9b0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/Video.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec$Companion.dex +new file mode 100644 +index 0000000..8d61412 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.dex +new file mode 100644 +index 0000000..3b13f45 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec.dex +new file mode 100644 +index 0000000..ecb61be +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoCodec.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType$Companion.dex +new file mode 100644 +index 0000000..28f2ce6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.dex +new file mode 100644 +index 0000000..384f029 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType.dex +new file mode 100644 +index 0000000..770c124 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoFileType.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.dex +new file mode 100644 +index 0000000..03b146b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.dex +new file mode 100644 +index 0000000..bcb9e54 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode.dex +new file mode 100644 +index 0000000..c272139 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/types/VideoStabilizationMode.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.dex +new file mode 100644 +index 0000000..2d05f61 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/CamcorderProfileUtils.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/CamcorderProfileUtils.dex +new file mode 100644 +index 0000000..0417d21 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/CamcorderProfileUtils.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/FileUtils$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/FileUtils$Companion.dex +new file mode 100644 +index 0000000..2c4f62f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/FileUtils$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/FileUtils.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/FileUtils.dex +new file mode 100644 +index 0000000..2b3bce4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/FileUtils.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.dex +new file mode 100644 +index 0000000..ac54169 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/ImageFormatUtils.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/ImageFormatUtils.dex +new file mode 100644 +index 0000000..0d599ce +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/ImageFormatUtils.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/OutputFile.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/OutputFile.dex +new file mode 100644 +index 0000000..349e96a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/OutputFile.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.dex +new file mode 100644 +index 0000000..7045cbf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.dex +new file mode 100644 +index 0000000..f1a227c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt.dex +new file mode 100644 +index 0000000..e32307d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/core/utils/RunOnUiThreadKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/Frame.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/Frame.dex +new file mode 100644 +index 0000000..1df26d1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/Frame.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessor.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessor.dex +new file mode 100644 +index 0000000..d0addf7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessor.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.dex +new file mode 100644 +index 0000000..bb1ff88 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.dex +new file mode 100644 +index 0000000..8777437 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.dex +new file mode 100644 +index 0000000..e4e960d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/SharedArray.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/SharedArray.dex +new file mode 100644 +index 0000000..65ba66e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/SharedArray.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.dex +new file mode 100644 +index 0000000..3464a9b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.dex +new file mode 100644 +index 0000000..4a4daac +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraProxy.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraProxy.dex +new file mode 100644 +index 0000000..0ad0e49 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraProxy.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.dex +new file mode 100644 +index 0000000..1ed122b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.dex +new file mode 100644 +index 0000000..01cb0b4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/AverageFpsChangedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/AverageFpsChangedEvent.dex +new file mode 100644 +index 0000000..e2204da +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/AverageFpsChangedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.dex +new file mode 100644 +index 0000000..ee47b07 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraCodeScannedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraCodeScannedEvent.dex +new file mode 100644 +index 0000000..24700b9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraCodeScannedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$1.dex +new file mode 100644 +index 0000000..5dfa87c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$Companion.dex +new file mode 100644 +index 0000000..9fd3c16 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$callback$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$callback$1.dex +new file mode 100644 +index 0000000..835497f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager$callback$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager.dex +new file mode 100644 +index 0000000..ed78261 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraDevicesManager.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraErrorEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraErrorEvent$Companion.dex +new file mode 100644 +index 0000000..ae8498a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraErrorEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraErrorEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraErrorEvent.dex +new file mode 100644 +index 0000000..d3f6f35 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraErrorEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraInitializedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraInitializedEvent$Companion.dex +new file mode 100644 +index 0000000..cb30937 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraInitializedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraInitializedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraInitializedEvent.dex +new file mode 100644 +index 0000000..88630ed +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraInitializedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.dex +new file mode 100644 +index 0000000..4277355 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.dex +new file mode 100644 +index 0000000..7c2a55e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPackage.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPackage.dex +new file mode 100644 +index 0000000..687392b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPackage.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.dex +new file mode 100644 +index 0000000..5aa0aff +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.dex +new file mode 100644 +index 0000000..f8a4437 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.dex +new file mode 100644 +index 0000000..a47369e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStartedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStartedEvent.dex +new file mode 100644 +index 0000000..58de05f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStartedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.dex +new file mode 100644 +index 0000000..8612caf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStoppedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStoppedEvent.dex +new file mode 100644 +index 0000000..85a4d32 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraPreviewStoppedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraShutterEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraShutterEvent$Companion.dex +new file mode 100644 +index 0000000..449155b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraShutterEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraShutterEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraShutterEvent.dex +new file mode 100644 +index 0000000..eb94ac3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraShutterEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStartedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStartedEvent$Companion.dex +new file mode 100644 +index 0000000..0cde693 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStartedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStartedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStartedEvent.dex +new file mode 100644 +index 0000000..c8404c7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStartedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStoppedEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStoppedEvent$Companion.dex +new file mode 100644 +index 0000000..22800f3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStoppedEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStoppedEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStoppedEvent.dex +new file mode 100644 +index 0000000..610c527 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraStoppedEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$Companion.dex +new file mode 100644 +index 0000000..764edac +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.dex +new file mode 100644 +index 0000000..1ba0fcf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$update$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$update$1.dex +new file mode 100644 +index 0000000..13710af +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$update$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$updatePreview$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$updatePreview$1.dex +new file mode 100644 +index 0000000..8e1a8e6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$updatePreview$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.dex +new file mode 100644 +index 0000000..96cc38d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView.dex +new file mode 100644 +index 0000000..387653a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewManager$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewManager$Companion.dex +new file mode 100644 +index 0000000..604bdd1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewManager$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewManager.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewManager.dex +new file mode 100644 +index 0000000..42f00a8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewManager.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$Companion.dex +new file mode 100644 +index 0000000..2eaa7d0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.dex +new file mode 100644 +index 0000000..c736590 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.dex +new file mode 100644 +index 0000000..a2c9be8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$focus$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$focus$1.dex +new file mode 100644 +index 0000000..d1df597 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$focus$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.dex +new file mode 100644 +index 0000000..0d17707 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.dex +new file mode 100644 +index 0000000..c02210d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$startRecording$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$startRecording$1.dex +new file mode 100644 +index 0000000..1347861 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$startRecording$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.dex +new file mode 100644 +index 0000000..9e3891b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.dex +new file mode 100644 +index 0000000..187ead3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.dex +new file mode 100644 +index 0000000..75b6cf2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.dex +new file mode 100644 +index 0000000..c385657 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule.dex +new file mode 100644 +index 0000000..9e3315e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewModule.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.dex +new file mode 100644 +index 0000000..f237366 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewReadyEvent.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewReadyEvent.dex +new file mode 100644 +index 0000000..9072f0c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraViewReadyEvent.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_EventsKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_EventsKt.dex +new file mode 100644 +index 0000000..075fc7f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_EventsKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.dex +new file mode 100644 +index 0000000..b37467c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.dex +new file mode 100644 +index 0000000..1ce1096 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt.dex +new file mode 100644 +index 0000000..1f943f8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_FocusKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_RecordVideoKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_RecordVideoKt.dex +new file mode 100644 +index 0000000..00535ed +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_RecordVideoKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.dex +new file mode 100644 +index 0000000..761ae25 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakePhotoKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakePhotoKt.dex +new file mode 100644 +index 0000000..2f34732 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakePhotoKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.dex +new file mode 100644 +index 0000000..4f47084 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector$Callback.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector$Callback.dex +new file mode 100644 +index 0000000..9582e61 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector$Callback.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.dex +new file mode 100644 +index 0000000..2b3d30a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector.dex +new file mode 100644 +index 0000000..38e1a96 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/FpsSampleCollector.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/List_toJSValueKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/List_toJSValueKt.dex +new file mode 100644 +index 0000000..c4629bf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/List_toJSValueKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.dex +new file mode 100644 +index 0000000..52777b0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.dex +new file mode 100644 +index 0000000..8702c5b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/utils/CallbackPromiseKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/utils/CallbackPromiseKt.dex +new file mode 100644 +index 0000000..58196ce +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/utils/CallbackPromiseKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/utils/WithPromiseKt.dex b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/utils/WithPromiseKt.dex +new file mode 100644 +index 0000000..1dbf775 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/mrousavy/camera/react/utils/WithPromiseKt.dex differ +diff --git a/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +new file mode 100644 +index 0000000..88fd1f0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/.transforms/89ae791c1dd9206f712b631fb1e43539/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ +diff --git a/node_modules/react-native-vision-camera/android/build/generated/source/buildConfig/debug/com/mrousavy/camera/BuildConfig.java b/node_modules/react-native-vision-camera/android/build/generated/source/buildConfig/debug/com/mrousavy/camera/BuildConfig.java +new file mode 100644 +index 0000000..cd10e12 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/generated/source/buildConfig/debug/com/mrousavy/camera/BuildConfig.java +@@ -0,0 +1,12 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.mrousavy.camera; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.mrousavy.camera"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = false; ++} +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/FrameHostObject.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/FrameHostObject.h +new file mode 100644 +index 0000000..6779e30 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/FrameHostObject.h +@@ -0,0 +1,39 @@ ++// ++// Created by Marc on 19/06/2021. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include "JFrame.h" ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class JSI_EXPORT FrameHostObject : public jsi::HostObject, public std::enable_shared_from_this { ++public: ++ explicit FrameHostObject(const jni::alias_ref& frame); ++ ~FrameHostObject(); ++ ++public: ++ jsi::Value get(jsi::Runtime&, const jsi::PropNameID& name) override; ++ std::vector getPropertyNames(jsi::Runtime& rt) override; ++ ++public: ++ inline jni::global_ref getFrame() const noexcept { ++ return _frame; ++ } ++ ++private: ++ jni::global_ref _frame; ++ std::unique_ptr _baseClass; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/FrameProcessorPluginHostObject.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/FrameProcessorPluginHostObject.h +new file mode 100644 +index 0000000..1f2a94f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/FrameProcessorPluginHostObject.h +@@ -0,0 +1,30 @@ ++// ++// Created by Marc Rousavy on 21.07.23. ++// ++ ++#pragma once ++ ++#include "JFrameProcessorPlugin.h" ++#include ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class FrameProcessorPluginHostObject : public jsi::HostObject { ++public: ++ explicit FrameProcessorPluginHostObject(jni::alias_ref plugin); ++ ~FrameProcessorPluginHostObject(); ++ ++public: ++ std::vector getPropertyNames(jsi::Runtime& runtime) override; ++ jsi::Value get(jsi::Runtime& runtime, const jsi::PropNameID& name) override; ++ ++private: ++ jni::global_ref _plugin; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrame.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrame.h +new file mode 100644 +index 0000000..802b575 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrame.h +@@ -0,0 +1,40 @@ ++// ++// Created by Marc on 21.07.2023. ++// ++ ++#pragma once ++ ++#include "JOrientation.h" ++#include "JPixelFormat.h" ++#include ++#include ++ ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JFrame : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/Frame;"; ++ ++public: ++ int getWidth() const; ++ int getHeight() const; ++ bool getIsValid() const; ++ bool getIsMirrored() const; ++ int getPlanesCount() const; ++ int getBytesPerRow() const; ++ jlong getTimestamp() const; ++ local_ref getOrientation() const; ++ local_ref getPixelFormat() const; ++#if __ANDROID_API__ >= 26 ++ AHardwareBuffer* getHardwareBuffer() const; ++#endif ++ ++ void incrementRefCount(); ++ void decrementRefCount(); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrameProcessor.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrameProcessor.h +new file mode 100644 +index 0000000..c164290 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrameProcessor.h +@@ -0,0 +1,52 @@ ++// ++// Created by Marc Rousavy on 29.09.21 ++// ++ ++#pragma once ++ ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++#include "FrameHostObject.h" ++#include "JFrame.h" ++ ++namespace vision { ++ ++using namespace facebook; ++ ++struct JFrameProcessor : public jni::HybridClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/FrameProcessor;"; ++ static void registerNatives(); ++ static jni::local_ref create(const std::shared_ptr& worklet, ++ const std::shared_ptr& context); ++ ++public: ++ /** ++ * Call the JS Frame Processor. ++ */ ++ void call(alias_ref frame); ++ ++private: ++ // Private constructor. Use `create(..)` to create new instances. ++ explicit JFrameProcessor(std::shared_ptr worklet, std::shared_ptr context); ++ ++private: ++ void callWithFrameHostObject(const std::shared_ptr& frameHostObject) const; ++ ++private: ++ friend HybridBase; ++ std::shared_ptr _workletInvoker; ++ std::shared_ptr _workletContext; ++}; ++ ++} // namespace vision ++ ++#endif +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrameProcessorPlugin.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrameProcessorPlugin.h +new file mode 100644 +index 0000000..4d07c29 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JFrameProcessorPlugin.h +@@ -0,0 +1,28 @@ ++// ++// Created by Marc Rousavy on 29.09.21 ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include "JFrame.h" ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JFrameProcessorPlugin : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/FrameProcessorPlugin;"; ++ ++public: ++ /** ++ * Call the plugin. ++ */ ++ local_ref callback(const alias_ref& frame, const alias_ref>& params) const; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JJSUnionValue.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JJSUnionValue.h +new file mode 100644 +index 0000000..4e82ab8 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JJSUnionValue.h +@@ -0,0 +1,24 @@ ++// ++// Created by Marc Rousavy on 29.12.23. ++// ++ ++#pragma once ++ ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JJSUnionValue : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/core/types/JSUnionValue;"; ++ ++ local_ref getUnionValue() { ++ const auto getUnionValueMethod = getClass()->getMethod("getUnionValue"); ++ return getUnionValueMethod(self()); ++ } ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JOrientation.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JOrientation.h +new file mode 100644 +index 0000000..971351b +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JOrientation.h +@@ -0,0 +1,20 @@ ++// ++// Created by Marc Rousavy on 29.12.23. ++// ++ ++#pragma once ++ ++#include "JJSUnionValue.h" ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JOrientation : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/core/types/Orientation;"; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JPixelFormat.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JPixelFormat.h +new file mode 100644 +index 0000000..af2a61b +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JPixelFormat.h +@@ -0,0 +1,20 @@ ++// ++// Created by Marc Rousavy on 29.12.23. ++// ++ ++#pragma once ++ ++#include "JJSUnionValue.h" ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JPixelFormat : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/core/types/PixelFormat;"; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JSIJNIConversion.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JSIJNIConversion.h +new file mode 100644 +index 0000000..50b9ea0 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JSIJNIConversion.h +@@ -0,0 +1,24 @@ ++// ++// Created by Marc Rousavy on 22.06.21. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace vision { ++ ++namespace JSIJNIConversion { ++ ++ using namespace facebook; ++ ++ jni::local_ref convertJSIValueToJNIObject(jsi::Runtime& runtime, const jsi::Value& value); ++ jni::local_ref> convertJSIObjectToJNIMap(jsi::Runtime& runtime, const jsi::Object& object); ++ ++ jsi::Value convertJNIObjectToJSIValue(jsi::Runtime& runtime, const jni::local_ref& object); ++ ++} // namespace JSIJNIConversion ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JSharedArray.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JSharedArray.h +new file mode 100644 +index 0000000..4069c2d +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JSharedArray.h +@@ -0,0 +1,51 @@ ++// ++// Created by Marc Rousavy on 12.01.24. ++// ++ ++#pragma once ++ ++#include "JVisionCameraProxy.h" ++#include "MutableJByteBuffer.h" ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class JSharedArray : public jni::HybridClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/SharedArray;"; ++ static void registerNatives(); ++ ++public: ++ static jni::local_ref create(jsi::Runtime& runtime, jsi::ArrayBuffer arrayBuffer); ++ ++public: ++ jint getSize(); ++ jni::global_ref getByteBuffer(); ++ std::shared_ptr getArrayBuffer(); ++ ++private: ++ static auto constexpr TAG = "SharedArray"; ++ friend HybridBase; ++ jni::global_ref _javaPart; ++ jni::global_ref _byteBuffer; ++ std::shared_ptr _arrayBuffer; ++ int _size; ++ ++private: ++ explicit JSharedArray(jsi::Runtime& runtime, std::shared_ptr arrayBuffer); ++ explicit JSharedArray(const jni::alias_ref& javaThis, const jni::alias_ref& proxy, ++ int size); ++ explicit JSharedArray(const jni::alias_ref& javaThis, const jni::alias_ref& proxy, ++ jni::alias_ref byteBuffer); ++ static jni::local_ref initHybridAllocate(jni::alias_ref javaThis, ++ jni::alias_ref proxy, jint size); ++ static jni::local_ref initHybridWrap(jni::alias_ref javaThis, ++ jni::alias_ref proxy, ++ jni::alias_ref byteBuffer); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JVisionCameraProxy.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JVisionCameraProxy.h +new file mode 100644 +index 0000000..d06eaa8 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JVisionCameraProxy.h +@@ -0,0 +1,69 @@ ++// ++// Created by Marc Rousavy on 21.07.23. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include "JFrameProcessor.h" ++#include "JFrameProcessorPlugin.h" ++#include "JVisionCameraScheduler.h" ++ ++#include ++#include ++ ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++#include ++#endif ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class JVisionCameraProxy : public jni::HybridClass { ++public: ++ ~JVisionCameraProxy(); ++ static void registerNatives(); ++ ++ void setFrameProcessor(int viewTag, jsi::Runtime& runtime, const std::shared_ptr& frameProcessor); ++ void removeFrameProcessor(int viewTag); ++ jni::local_ref initFrameProcessorPlugin(const std::string& name, ++ jni::local_ref> options); ++ ++ jsi::Runtime* getJSRuntime() { ++ return _runtime; ++ } ++ ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++ jsi::Runtime& getWorkletRuntime() { ++ return _workletContext->getWorkletRuntime(); ++ } ++ ++ std::shared_ptr getWorkletContext() { ++ return _workletContext; ++ } ++#endif ++ ++private: ++ friend HybridBase; ++ jni::global_ref _javaPart; ++ jsi::Runtime* _runtime; ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++ std::shared_ptr _workletContext; ++#endif ++ ++ static auto constexpr TAG = "VisionCameraProxy"; ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/VisionCameraProxy;"; ++ ++ explicit JVisionCameraProxy(const jni::alias_ref& javaThis, jsi::Runtime* jsRuntime, ++ const std::shared_ptr& jsCallInvoker, ++ const jni::global_ref& scheduler); ++ static jni::local_ref initHybrid(jni::alias_ref javaThis, jlong jsRuntimePointer, ++ jni::alias_ref jsCallInvokerHolder, ++ const jni::alias_ref& scheduler); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JVisionCameraScheduler.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JVisionCameraScheduler.h +new file mode 100644 +index 0000000..3c153fd +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/JVisionCameraScheduler.h +@@ -0,0 +1,49 @@ ++// ++// Created by Marc Rousavy on 25.07.21. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++/** ++ * A Scheduler that runs methods on the Frame Processor Thread (which is a Java Thread). ++ * In order to call something on the Java Frame Processor Thread, you have to: ++ * ++ * 1. Call `dispatchAsync(..)` with the given C++ Method. ++ * 2. Internally, `scheduleTrigger()` will get called, which is a Java Method. ++ * 3. The `scheduleTrigger()` Java Method will switch to the Frame Processor Java Thread and call ++ * `trigger()` on there ++ * 4. `trigger()` is a C++ function here that just calls the passed C++ Method from step 1. ++ */ ++class JVisionCameraScheduler : public jni::HybridClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/VisionCameraScheduler;"; ++ static jni::local_ref initHybrid(jni::alias_ref jThis); ++ static void registerNatives(); ++ ++ // schedules the given job to be run on the VisionCamera FP Thread at some future point in time ++ void dispatchAsync(const std::function& job); ++ ++private: ++ friend HybridBase; ++ jni::global_ref _javaPart; ++ std::queue> _jobs; ++ std::mutex _mutex; ++ ++ explicit JVisionCameraScheduler(jni::alias_ref jThis) : _javaPart(jni::make_global(jThis)) {} ++ ++ // Schedules a call to `trigger` on the VisionCamera FP Thread ++ void scheduleTrigger(); ++ // Calls the latest job in the job queue ++ void trigger(); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/MutableJByteBuffer.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/MutableJByteBuffer.h +new file mode 100644 +index 0000000..421af3e +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/MutableJByteBuffer.h +@@ -0,0 +1,33 @@ ++// ++// Created by Marc Rousavy on 17.01.24. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class MutableJByteBuffer : public jsi::MutableBuffer { ++public: ++ /** ++ * Wraps the given JByteBuffer in a MutableBuffer for use in JS. ++ */ ++ explicit MutableJByteBuffer(jni::alias_ref byteBuffer); ++ ~MutableJByteBuffer(); ++ ++public: ++ uint8_t* data() override; ++ size_t size() const override; ++ jni::global_ref getByteBuffer(); ++ ++private: ++ jni::global_ref _byteBuffer; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/MutableRawBuffer.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/MutableRawBuffer.h +new file mode 100644 +index 0000000..43121c2 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/MutableRawBuffer.h +@@ -0,0 +1,48 @@ ++// ++// MutableRawBuffer.h ++// VisionCamera ++// ++// Created by Marc Rousavy on 17.01.24. ++// Copyright © 2024 mrousavy. All rights reserved. ++// ++ ++#pragma once ++ ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class MutableRawBuffer : public jsi::MutableBuffer { ++ ++public: ++ explicit MutableRawBuffer(uint8_t* data, size_t size, bool freeOnDealloc) { ++ _size = size; ++ _data = data; ++ _freeOnDealloc = freeOnDealloc; ++ } ++ explicit MutableRawBuffer(size_t size) : MutableRawBuffer(new uint8_t[size], size, true) {} ++ ++ ~MutableRawBuffer() { ++ if (_freeOnDealloc) { ++ delete[] _data; ++ } ++ } ++ ++public: ++ uint8_t* data() override { ++ return _data; ++ } ++ size_t size() const override { ++ return _size; ++ } ++ ++private: ++ uint8_t* _data; ++ size_t _size; ++ bool _freeOnDealloc; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/VisionCameraProxy.h b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/VisionCameraProxy.h +new file mode 100644 +index 0000000..6dc8fde +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/headers/visioncamera/react-native-vision-camera/VisionCameraProxy.h +@@ -0,0 +1,45 @@ ++// ++// Created by Marc Rousavy on 21.07.23. ++// ++ ++#pragma once ++ ++#include ++ ++#include "JVisionCameraProxy.h" ++#include "JVisionCameraScheduler.h" ++ ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class VisionCameraProxy : public jsi::HostObject { ++public: ++ explicit VisionCameraProxy(const jni::alias_ref& javaProxy); ++ ~VisionCameraProxy(); ++ ++public: ++ std::vector getPropertyNames(jsi::Runtime& runtime) override; ++ jsi::Value get(jsi::Runtime& runtime, const jsi::PropNameID& name) override; ++ ++private: ++ void setFrameProcessor(int viewTag, jsi::Runtime& runtime, const std::shared_ptr& frameProcessor); ++ void removeFrameProcessor(int viewTag); ++ jsi::Value initFrameProcessorPlugin(jsi::Runtime& runtime, const std::string& name, const jsi::Object& options); ++ ++private: ++ jni::global_ref _javaProxy; ++ static constexpr const char* TAG = "VisionCameraProxy"; ++}; ++ ++class VisionCameraInstaller : public jni::JavaClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/VisionCameraInstaller;"; ++ static void registerNatives(); ++ static void install(jni::alias_ref clazz, jni::alias_ref proxy); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-vision-camera/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..46abc9f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-vision-camera/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..72bb9f3 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.mrousavy.camera", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar b/node_modules/react-native-vision-camera/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar +new file mode 100644 +index 0000000..ff3da6f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-vision-camera/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-vision-camera/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/node_modules/react-native-vision-camera/android/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libVisionCamera.so +new file mode 100755 +index 0000000..a87c7e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..aadd325 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..0d856b9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..92b0437 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libVisionCamera.so +new file mode 100755 +index 0000000..4876e05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so +new file mode 100644 +index 0000000..68ecbda +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libfbjni.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..a2c5e5c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so +new file mode 100644 +index 0000000..1088a3e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64/libreactnative.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-vision-camera/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..298ad7e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-vision-camera/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..d389895 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-vision-camera/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_command_VisionCamera b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_command_VisionCamera +new file mode 100755 +index 0000000..d2a6ad4 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_command_VisionCamera +@@ -0,0 +1,4 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a \ ++ VisionCamera +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_model.json b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_model.json +new file mode 100644 +index 0000000..1ca0de9 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_model.json +@@ -0,0 +1,216 @@ ++{ ++ "info": { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "soFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a", ++ "soRepublishFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/arm64-v8a", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules", ++ "-DENABLE_FRAME_PROCESSORS\u003dOFF", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [ ++ "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all" ++ ], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [ ++ "VisionCamera" ++ ], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx", ++ "intermediatesBaseFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates", ++ "intermediatesFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react_native_vision_camera", ++ "moduleRootFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android", ++ "moduleBuildFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build.gradle", ++ "makeFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/android", ++ "sdkFolder": "/Users/yogesh/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "6fq4ka5u4k4u2l5n671e33r4w5k2o6265o4f5o6lb2n6t2y2w4o67546t23", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.2.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules\n-DENABLE_FRAME_PROCESSORS\u003dOFF\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "configurationArguments": [ ++ "-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003darm64-v8a", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a", ++ "-DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab", ++ "-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules", ++ "-DENABLE_FRAME_PROCESSORS\u003dOFF", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "stlLibraryFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_stderr_VisionCamera.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_stderr_VisionCamera.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_stdout_VisionCamera.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_stdout_VisionCamera.txt +new file mode 100644 +index 0000000..8fcfba1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/build_stdout_VisionCamera.txt +@@ -0,0 +1,14 @@ ++ninja: Entering directory `/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a' ++[1/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o ++[2/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o ++[3/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o ++[4/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o ++[5/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o ++[6/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o ++[7/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o ++[8/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o ++[9/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o ++[10/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o ++[11/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o ++[12/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o ++[13/13] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_command b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_command +new file mode 100755 +index 0000000..484ca00 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_command +@@ -0,0 +1,24 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=arm64-v8a \ ++ -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a \ ++ -DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all" \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab \ ++ -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DNODE_MODULES_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules \ ++ -DENABLE_FRAME_PROCESSORS=OFF \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_stderr.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_stderr.txt +new file mode 100644 +index 0000000..58863d1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_stderr.txt +@@ -0,0 +1 @@ ++VisionCamera: Frame Processors: OFF! +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_stdout.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_stdout.txt +new file mode 100644 +index 0000000..e3f3b3d +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/generate_cxx_metadata_12700_timing.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/generate_cxx_metadata_12700_timing.txt +new file mode 100644 +index 0000000..1b7d3fe +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/generate_cxx_metadata_12700_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 916ms ++ generate-prefab-packages completed in 924ms ++ execute-generate-process ++ exec-configure 1201ms ++ execute-generate-process completed in 1206ms ++generate_cxx_metadata completed in 2152ms ++ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/metadata_generation_record.json b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/metadata_generation_record.json +new file mode 100644 +index 0000000..5b71640 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/metadata_generation_record.json +@@ -0,0 +1,184 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: arm64-v8a", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/android_gradle_build.json due to:", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- no fingerprint file, will remove stale configuration folder", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n arm64-v8a \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging3317704116344487021/staged-cli-output \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "removing stale contents from \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "created folder \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n \"-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all\" \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules \\\n -DENABLE_FRAME_PROCESSORS\u003dOFF \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003darm64-v8a \\\n -DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n \"-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all\" \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/arm64-v8a/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules \\\n -DENABLE_FRAME_PROCESSORS\u003dOFF \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json.bin normally", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/arm64-v8a/compile_commands.json to /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/tools/debug/arm64-v8a/compile_commands.json", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|arm64-v8a", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/prefab_command b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/prefab_command +new file mode 100755 +index 0000000..fd2a345 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/prefab_command +@@ -0,0 +1,20 @@ ++/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ arm64-v8a \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging3317704116344487021/staged-cli-output \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/prefab_stderr.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/prefab_stdout.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/arm64-v8a/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_command_VisionCamera b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_command_VisionCamera +new file mode 100755 +index 0000000..c23481e +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_command_VisionCamera +@@ -0,0 +1,4 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ -C \ ++ /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 \ ++ VisionCamera +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_model.json b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_model.json +new file mode 100644 +index 0000000..caf1186 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_model.json +@@ -0,0 +1,216 @@ ++{ ++ "info": { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ }, ++ "cxxBuildFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "soFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64", ++ "soRepublishFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cmake/debug/obj/x86_64", ++ "abiPlatformVersion": 24, ++ "cmake": { ++ "effectiveConfiguration": { ++ "inheritEnvironments": [], ++ "variables": [] ++ } ++ }, ++ "variant": { ++ "buildSystemArgumentList": [ ++ "-DANDROID_STL\u003dc++_shared", ++ "-DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules", ++ "-DENABLE_FRAME_PROCESSORS\u003dOFF", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "cFlagsList": [], ++ "cppFlagsList": [ ++ "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all" ++ ], ++ "variantName": "debug", ++ "isDebuggableEnabled": true, ++ "validAbiList": [ ++ "arm64-v8a", ++ "x86_64" ++ ], ++ "buildTargetSet": [], ++ "implicitBuildTargetSet": [ ++ "VisionCamera" ++ ], ++ "cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name", ++ "module": { ++ "cxxFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx", ++ "intermediatesBaseFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates", ++ "intermediatesFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx", ++ "gradleModulePathName": ":react_native_vision_camera", ++ "moduleRootFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android", ++ "moduleBuildFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build.gradle", ++ "makeFile": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "buildSystem": "CMAKE", ++ "ndkFolder": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkFolderBeforeSymLinking": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "ndkVersion": "27.1.12297006", ++ "ndkSupportedAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "riscv64", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultAbiList": [ ++ "armeabi-v7a", ++ "arm64-v8a", ++ "x86", ++ "x86_64" ++ ], ++ "ndkDefaultStl": "LIBCXX_STATIC", ++ "ndkMetaPlatforms": { ++ "min": 21, ++ "max": 35, ++ "aliases": { ++ "20": 19, ++ "25": 24, ++ "J": 16, ++ "J-MR1": 17, ++ "J-MR2": 18, ++ "K": 19, ++ "L": 21, ++ "L-MR1": 22, ++ "M": 23, ++ "N": 24, ++ "N-MR1": 24, ++ "O": 26, ++ "O-MR1": 27, ++ "P": 28, ++ "Q": 29, ++ "R": 30, ++ "S": 31, ++ "Sv2": 32, ++ "Tiramisu": 33, ++ "UpsideDownCake": 34, ++ "VanillaIceCream": 35 ++ } ++ }, ++ "ndkMetaAbiList": [ ++ { ++ "name": "armeabi-v7a", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm", ++ "triple": "arm-linux-androideabi", ++ "llvmTriple": "armv7-none-linux-androideabi" ++ }, ++ { ++ "name": "arm64-v8a", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "arm64", ++ "triple": "aarch64-linux-android", ++ "llvmTriple": "aarch64-none-linux-android" ++ }, ++ { ++ "name": "riscv64", ++ "bitness": 64, ++ "isDefault": false, ++ "isDeprecated": false, ++ "architecture": "riscv64", ++ "triple": "riscv64-linux-android", ++ "llvmTriple": "riscv64-none-linux-android" ++ }, ++ { ++ "name": "x86", ++ "bitness": 32, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86", ++ "triple": "i686-linux-android", ++ "llvmTriple": "i686-none-linux-android" ++ }, ++ { ++ "name": "x86_64", ++ "bitness": 64, ++ "isDefault": true, ++ "isDeprecated": false, ++ "architecture": "x86_64", ++ "triple": "x86_64-linux-android", ++ "llvmTriple": "x86_64-none-linux-android" ++ } ++ ], ++ "cmakeToolchainFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "cmake": { ++ "cmakeExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake" ++ }, ++ "stlSharedObjectMap": { ++ "LIBCXX_SHARED": { ++ "armeabi-v7a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/arm-linux-androideabi/libc++_shared.so", ++ "arm64-v8a": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/aarch64-linux-android/libc++_shared.so", ++ "riscv64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/riscv64-linux-android/libc++_shared.so", ++ "x86": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/i686-linux-android/libc++_shared.so", ++ "x86_64": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so" ++ }, ++ "LIBCXX_STATIC": {}, ++ "NONE": {}, ++ "SYSTEM": {} ++ }, ++ "project": { ++ "rootBuildGradleFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/android", ++ "sdkFolder": "/Users/yogesh/Library/Android/sdk", ++ "isBuildOnlyTargetAbiEnabled": true, ++ "isCmakeBuildCohabitationEnabled": false, ++ "isPrefabEnabled": true ++ }, ++ "outputOptions": [], ++ "ninjaExe": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "hasBuildTimeInformation": true ++ }, ++ "prefabClassPaths": [ ++ "/Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar" ++ ], ++ "prefabPackages": [ ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab", ++ "/Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab" ++ ], ++ "prefabPackageConfigurations": [], ++ "stlType": "c++_shared", ++ "optimizationTag": "Debug" ++ }, ++ "buildSettings": { ++ "environmentVariables": [] ++ }, ++ "prefabFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64", ++ "isActiveAbi": true, ++ "fullConfigurationHash": "6fq4ka5u4k4u2l5n671e33r4w5k2o6265o4f5o6lb2n6t2y2w4o67546t23", ++ "fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.7.2.\n# - $NDK is the path to NDK 27.1.12297006.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d24\n-DANDROID_PLATFORM\u003dandroid-24\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/$HASH/prefab/$ABI/prefab\n-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared\n-DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules\n-DENABLE_FRAME_PROCESSORS\u003dOFF\n-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON\n-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384", ++ "configurationArguments": [ ++ "-H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android", ++ "-DCMAKE_SYSTEM_NAME\u003dAndroid", ++ "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", ++ "-DCMAKE_SYSTEM_VERSION\u003d24", ++ "-DANDROID_PLATFORM\u003dandroid-24", ++ "-DANDROID_ABI\u003dx86_64", ++ "-DCMAKE_ANDROID_ARCH_ABI\u003dx86_64", ++ "-DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006", ++ "-DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake", ++ "-DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja", ++ "-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all", ++ "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64", ++ "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64", ++ "-DCMAKE_BUILD_TYPE\u003dDebug", ++ "-DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab", ++ "-B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64", ++ "-GNinja", ++ "-DANDROID_STL\u003dc++_shared", ++ "-DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules", ++ "-DENABLE_FRAME_PROCESSORS\u003dOFF", ++ "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON", ++ "-DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384" ++ ], ++ "stlLibraryFile": "/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/sysroot/usr/lib/x86_64-linux-android/libc++_shared.so", ++ "intermediatesParentFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u" ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_stderr_VisionCamera.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_stderr_VisionCamera.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_stdout_VisionCamera.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_stdout_VisionCamera.txt +new file mode 100644 +index 0000000..7ce788e +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/build_stdout_VisionCamera.txt +@@ -0,0 +1,14 @@ ++ninja: Entering directory `/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64' ++[1/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessor.cpp.o ++[2/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrameProcessorPlugin.cpp.o ++[3/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/MutableJByteBuffer.cpp.o ++[4/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JFrame.cpp.o ++[5/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/VisionCamera.cpp.o ++[6/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameProcessorPluginHostObject.cpp.o ++[7/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraProxy.cpp.o ++[8/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JSharedArray.cpp.o ++[9/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/VisionCameraProxy.cpp.o ++[10/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/JSIJNIConversion.cpp.o ++[11/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/FrameHostObject.cpp.o ++[12/13] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/frameprocessors/java-bindings/JVisionCameraScheduler.cpp.o ++[13/13] Linking CXX shared library ../../../../build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_command b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_command +new file mode 100755 +index 0000000..5eff7ef +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_command +@@ -0,0 +1,24 @@ ++/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \ ++ -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android \ ++ -DCMAKE_SYSTEM_NAME=Android \ ++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ ++ -DCMAKE_SYSTEM_VERSION=24 \ ++ -DANDROID_PLATFORM=android-24 \ ++ -DANDROID_ABI=x86_64 \ ++ -DCMAKE_ANDROID_ARCH_ABI=x86_64 \ ++ -DANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_ANDROID_NDK=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \ ++ -DCMAKE_TOOLCHAIN_FILE=/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \ ++ -DCMAKE_MAKE_PROGRAM=/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \ ++ "-DCMAKE_CXX_FLAGS=-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all" \ ++ -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 \ ++ -DCMAKE_RUNTIME_OUTPUT_DIRECTORY=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 \ ++ -DCMAKE_BUILD_TYPE=Debug \ ++ -DCMAKE_FIND_ROOT_PATH=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab \ ++ -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 \ ++ -GNinja \ ++ -DANDROID_STL=c++_shared \ ++ -DNODE_MODULES_DIR=/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules \ ++ -DENABLE_FRAME_PROCESSORS=OFF \ ++ -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON \ ++ -DCMAKE_SHARED_LINKER_FLAGS=-Wl,-z,max-page-size=16384 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_stderr.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_stderr.txt +new file mode 100644 +index 0000000..58863d1 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_stderr.txt +@@ -0,0 +1 @@ ++VisionCamera: Frame Processors: OFF! +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_stdout.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_stdout.txt +new file mode 100644 +index 0000000..1b09195 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/configure_stdout.txt +@@ -0,0 +1,15 @@ ++-- The C compiler identification is Clang 18.0.2 ++-- The CXX compiler identification is Clang 18.0.2 ++-- Detecting C compiler ABI info ++-- Detecting C compiler ABI info - done ++-- Check for working C compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang - skipped ++-- Detecting C compile features ++-- Detecting C compile features - done ++-- Detecting CXX compiler ABI info ++-- Detecting CXX compiler ABI info - done ++-- Check for working CXX compiler: /Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang++ - skipped ++-- Detecting CXX compile features ++-- Detecting CXX compile features - done ++-- Configuring done ++-- Generating done ++-- Build files have been written to: /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/generate_cxx_metadata_12694_timing.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/generate_cxx_metadata_12694_timing.txt +new file mode 100644 +index 0000000..bf2e0ca +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/generate_cxx_metadata_12694_timing.txt +@@ -0,0 +1,10 @@ ++# C/C++ build system timings ++generate_cxx_metadata ++ generate-prefab-packages ++ exec-prefab 899ms ++ generate-prefab-packages completed in 908ms ++ execute-generate-process ++ exec-configure 579ms ++ execute-generate-process completed in 584ms ++generate_cxx_metadata completed in 1499ms ++ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/metadata_generation_record.json b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/metadata_generation_record.json +new file mode 100644 +index 0000000..08fc393 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/metadata_generation_record.json +@@ -0,0 +1,184 @@ ++[ ++ { ++ "level_": 0, ++ "message_": "Start JSON generation. Platform version: 24 min SDK version: x86_64", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "rebuilding JSON /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/android_gradle_build.json due to:", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "- no fingerprint file, will remove stale configuration folder", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \\\n --class-path \\\n /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \\\n com.google.prefab.cli.AppKt \\\n --build-system \\\n cmake \\\n --platform \\\n android \\\n --abi \\\n x86_64 \\\n --os-version \\\n 24 \\\n --stl \\\n c++_shared \\\n --ndk-version \\\n 27 \\\n --output \\\n /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging5033411866949691988/staged-cli-output \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \\\n /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "removing stale contents from \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "created folder \u0027/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64\u0027", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "executing cmake /Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n \"-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all\" \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules \\\n -DENABLE_FRAME_PROCESSORS\u003dOFF \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/cmake \\\n -H/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android \\\n -DCMAKE_SYSTEM_NAME\u003dAndroid \\\n -DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON \\\n -DCMAKE_SYSTEM_VERSION\u003d24 \\\n -DANDROID_PLATFORM\u003dandroid-24 \\\n -DANDROID_ABI\u003dx86_64 \\\n -DCMAKE_ANDROID_ARCH_ABI\u003dx86_64 \\\n -DANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_ANDROID_NDK\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006 \\\n -DCMAKE_TOOLCHAIN_FILE\u003d/Users/yogesh/Library/Android/sdk/ndk/27.1.12297006/build/cmake/android.toolchain.cmake \\\n -DCMAKE_MAKE_PROGRAM\u003d/Users/yogesh/Library/Android/sdk/cmake/3.22.1/bin/ninja \\\n \"-DCMAKE_CXX_FLAGS\u003d-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all\" \\\n -DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 \\\n -DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64 \\\n -DCMAKE_BUILD_TYPE\u003dDebug \\\n -DCMAKE_FIND_ROOT_PATH\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/prefab/x86_64/prefab \\\n -B/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64 \\\n -GNinja \\\n -DANDROID_STL\u003dc++_shared \\\n -DNODE_MODULES_DIR\u003d/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules \\\n -DENABLE_FRAME_PROCESSORS\u003dOFF \\\n -DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES\u003dON \\\n -DCMAKE_SHARED_LINKER_FLAGS\u003d-Wl,-z,max-page-size\u003d16384\n", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Received process result: 0", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "Exiting generation of /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json.bin normally", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "done executing cmake", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "hard linked /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/Debug/6fq4ka5u/x86_64/compile_commands.json to /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/.cxx/tools/debug/x86_64/compile_commands.json", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ }, ++ { ++ "level_": 0, ++ "message_": "JSON generation completed without problems", ++ "file_": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/CMakeLists.txt", ++ "tag_": "debug|x86_64", ++ "diagnosticCode_": 0, ++ "memoizedIsInitialized": 1, ++ "unknownFields": { ++ "fields": {} ++ }, ++ "memoizedSize": -1, ++ "memoizedHashCode": 0 ++ } ++] +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/prefab_command b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/prefab_command +new file mode 100755 +index 0000000..e8de57d +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/prefab_command +@@ -0,0 +1,20 @@ ++/opt/homebrew/Cellar/openjdk@17/17.0.17/libexec/openjdk.jdk/Contents/Home/bin/java \ ++ --class-path \ ++ /Users/yogesh/.gradle/caches/modules-2/files-2.1/com.google.prefab/cli/2.1.0/aa32fec809c44fa531f01dcfb739b5b3304d3050/cli-2.1.0-all.jar \ ++ com.google.prefab.cli.AppKt \ ++ --build-system \ ++ cmake \ ++ --platform \ ++ android \ ++ --abi \ ++ x86_64 \ ++ --os-version \ ++ 24 \ ++ --stl \ ++ c++_shared \ ++ --ndk-version \ ++ 27 \ ++ --output \ ++ /var/folders/s4/2l096pdd0w95k0dcl4r7_d100000gn/T/agp-prefab-staging5033411866949691988/staged-cli-output \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/411de04326ee3d3a2caad763a2a8ffba/transformed/jetified-react-android-0.77.3-debug/prefab \ ++ /Users/yogesh/.gradle/caches/8.11.1/transforms/5dab2dd28874a490aa0a84832eaa31ed/transformed/jetified-fbjni-0.7.0/prefab +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/prefab_stderr.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/prefab_stderr.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/prefab_stdout.txt b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/logs/x86_64/prefab_stdout.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so +new file mode 100755 +index 0000000..a87c7e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libc++_shared.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libc++_shared.so +new file mode 100755 +index 0000000..2c72c65 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libc++_shared.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libfbjni.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libfbjni.so +new file mode 100644 +index 0000000..aadd325 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libfbjni.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libjsi.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libjsi.so +new file mode 100644 +index 0000000..0d856b9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libjsi.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libreactnative.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libreactnative.so +new file mode 100644 +index 0000000..92b0437 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/arm64-v8a/libreactnative.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so +new file mode 100755 +index 0000000..4876e05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libc++_shared.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libc++_shared.so +new file mode 100755 +index 0000000..8e3a868 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libc++_shared.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libfbjni.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libfbjni.so +new file mode 100644 +index 0000000..68ecbda +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libfbjni.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libjsi.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libjsi.so +new file mode 100644 +index 0000000..a2c5e5c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libjsi.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libreactnative.so b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libreactnative.so +new file mode 100644 +index 0000000..1088a3e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/cxx/Debug/6fq4ka5u/obj/x86_64/libreactnative.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +new file mode 100644 +index 0000000..dab18fe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..7b06ea3 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Fri Oct 24 22:53:24 IST 2025 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..463de1c +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..bfa60fe +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..2a07f54 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/packageDebugAssets/merger.xml +new file mode 100644 +index 0000000..6c0b7a4 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/incremental/packageDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react_native_vision_camera_debug.kotlin_module b/node_modules/react-native-vision-camera/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react_native_vision_camera_debug.kotlin_module +new file mode 100644 +index 0000000..2acdd76 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react_native_vision_camera_debug.kotlin_module differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/BuildConfig.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/BuildConfig.class +new file mode 100644 +index 0000000..365a6a8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/BuildConfig.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/Frame.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/Frame.class +new file mode 100644 +index 0000000..57b7038 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/Frame.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessor.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessor.class +new file mode 100644 +index 0000000..52370b4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessor.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.class +new file mode 100644 +index 0000000..1bee03a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.class +new file mode 100644 +index 0000000..411e8d1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.class +new file mode 100644 +index 0000000..a7e0286 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/SharedArray.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/SharedArray.class +new file mode 100644 +index 0000000..9996de1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/SharedArray.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.class +new file mode 100644 +index 0000000..e545cb9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.class b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.class +new file mode 100644 +index 0000000..87ba65f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libVisionCamera.so +new file mode 100644 +index 0000000..a87c7e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/arm64-v8a/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libVisionCamera.so +new file mode 100644 +index 0000000..4876e05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/library_and_local_jars_jni/debug/copyDebugJniLibsProjectAndLocalJars/jni/x86_64/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libVisionCamera.so +new file mode 100644 +index 0000000..a87c7e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/arm64-v8a/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libVisionCamera.so +new file mode 100644 +index 0000000..4876e05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/library_jni/debug/copyDebugJniLibsProjectOnly/jni/x86_64/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-vision-camera/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..78ac5b8 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,2 @@ ++R_DEF: Internal format may change without notice ++local +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-vision-camera/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..e9948dc +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react_native_vision_camera.jar b/node_modules/react-native-vision-camera/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react_native_vision_camera.jar +new file mode 100644 +index 0000000..15cb0ec +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-react_native_vision_camera.jar differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-vision-camera/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..46abc9f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libVisionCamera.so +new file mode 100644 +index 0000000..a87c7e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/arm64-v8a/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libVisionCamera.so +new file mode 100644 +index 0000000..4876e05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/merged_native_libs/debug/mergeDebugNativeLibs/out/lib/x86_64/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-vision-camera/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-vision-camera/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/FrameHostObject.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/FrameHostObject.h +new file mode 100644 +index 0000000..6779e30 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/FrameHostObject.h +@@ -0,0 +1,39 @@ ++// ++// Created by Marc on 19/06/2021. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include "JFrame.h" ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class JSI_EXPORT FrameHostObject : public jsi::HostObject, public std::enable_shared_from_this { ++public: ++ explicit FrameHostObject(const jni::alias_ref& frame); ++ ~FrameHostObject(); ++ ++public: ++ jsi::Value get(jsi::Runtime&, const jsi::PropNameID& name) override; ++ std::vector getPropertyNames(jsi::Runtime& rt) override; ++ ++public: ++ inline jni::global_ref getFrame() const noexcept { ++ return _frame; ++ } ++ ++private: ++ jni::global_ref _frame; ++ std::unique_ptr _baseClass; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/FrameProcessorPluginHostObject.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/FrameProcessorPluginHostObject.h +new file mode 100644 +index 0000000..1f2a94f +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/FrameProcessorPluginHostObject.h +@@ -0,0 +1,30 @@ ++// ++// Created by Marc Rousavy on 21.07.23. ++// ++ ++#pragma once ++ ++#include "JFrameProcessorPlugin.h" ++#include ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class FrameProcessorPluginHostObject : public jsi::HostObject { ++public: ++ explicit FrameProcessorPluginHostObject(jni::alias_ref plugin); ++ ~FrameProcessorPluginHostObject(); ++ ++public: ++ std::vector getPropertyNames(jsi::Runtime& runtime) override; ++ jsi::Value get(jsi::Runtime& runtime, const jsi::PropNameID& name) override; ++ ++private: ++ jni::global_ref _plugin; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrame.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrame.h +new file mode 100644 +index 0000000..802b575 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrame.h +@@ -0,0 +1,40 @@ ++// ++// Created by Marc on 21.07.2023. ++// ++ ++#pragma once ++ ++#include "JOrientation.h" ++#include "JPixelFormat.h" ++#include ++#include ++ ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JFrame : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/Frame;"; ++ ++public: ++ int getWidth() const; ++ int getHeight() const; ++ bool getIsValid() const; ++ bool getIsMirrored() const; ++ int getPlanesCount() const; ++ int getBytesPerRow() const; ++ jlong getTimestamp() const; ++ local_ref getOrientation() const; ++ local_ref getPixelFormat() const; ++#if __ANDROID_API__ >= 26 ++ AHardwareBuffer* getHardwareBuffer() const; ++#endif ++ ++ void incrementRefCount(); ++ void decrementRefCount(); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrameProcessor.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrameProcessor.h +new file mode 100644 +index 0000000..c164290 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrameProcessor.h +@@ -0,0 +1,52 @@ ++// ++// Created by Marc Rousavy on 29.09.21 ++// ++ ++#pragma once ++ ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++#include "FrameHostObject.h" ++#include "JFrame.h" ++ ++namespace vision { ++ ++using namespace facebook; ++ ++struct JFrameProcessor : public jni::HybridClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/FrameProcessor;"; ++ static void registerNatives(); ++ static jni::local_ref create(const std::shared_ptr& worklet, ++ const std::shared_ptr& context); ++ ++public: ++ /** ++ * Call the JS Frame Processor. ++ */ ++ void call(alias_ref frame); ++ ++private: ++ // Private constructor. Use `create(..)` to create new instances. ++ explicit JFrameProcessor(std::shared_ptr worklet, std::shared_ptr context); ++ ++private: ++ void callWithFrameHostObject(const std::shared_ptr& frameHostObject) const; ++ ++private: ++ friend HybridBase; ++ std::shared_ptr _workletInvoker; ++ std::shared_ptr _workletContext; ++}; ++ ++} // namespace vision ++ ++#endif +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrameProcessorPlugin.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrameProcessorPlugin.h +new file mode 100644 +index 0000000..4d07c29 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JFrameProcessorPlugin.h +@@ -0,0 +1,28 @@ ++// ++// Created by Marc Rousavy on 29.09.21 ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include "JFrame.h" ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JFrameProcessorPlugin : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/FrameProcessorPlugin;"; ++ ++public: ++ /** ++ * Call the plugin. ++ */ ++ local_ref callback(const alias_ref& frame, const alias_ref>& params) const; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JJSUnionValue.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JJSUnionValue.h +new file mode 100644 +index 0000000..4e82ab8 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JJSUnionValue.h +@@ -0,0 +1,24 @@ ++// ++// Created by Marc Rousavy on 29.12.23. ++// ++ ++#pragma once ++ ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JJSUnionValue : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/core/types/JSUnionValue;"; ++ ++ local_ref getUnionValue() { ++ const auto getUnionValueMethod = getClass()->getMethod("getUnionValue"); ++ return getUnionValueMethod(self()); ++ } ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JOrientation.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JOrientation.h +new file mode 100644 +index 0000000..971351b +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JOrientation.h +@@ -0,0 +1,20 @@ ++// ++// Created by Marc Rousavy on 29.12.23. ++// ++ ++#pragma once ++ ++#include "JJSUnionValue.h" ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JOrientation : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/core/types/Orientation;"; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JPixelFormat.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JPixelFormat.h +new file mode 100644 +index 0000000..af2a61b +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JPixelFormat.h +@@ -0,0 +1,20 @@ ++// ++// Created by Marc Rousavy on 29.12.23. ++// ++ ++#pragma once ++ ++#include "JJSUnionValue.h" ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++using namespace jni; ++ ++struct JPixelFormat : public JavaClass { ++ static constexpr auto kJavaDescriptor = "Lcom/mrousavy/camera/core/types/PixelFormat;"; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JSIJNIConversion.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JSIJNIConversion.h +new file mode 100644 +index 0000000..50b9ea0 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JSIJNIConversion.h +@@ -0,0 +1,24 @@ ++// ++// Created by Marc Rousavy on 22.06.21. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace vision { ++ ++namespace JSIJNIConversion { ++ ++ using namespace facebook; ++ ++ jni::local_ref convertJSIValueToJNIObject(jsi::Runtime& runtime, const jsi::Value& value); ++ jni::local_ref> convertJSIObjectToJNIMap(jsi::Runtime& runtime, const jsi::Object& object); ++ ++ jsi::Value convertJNIObjectToJSIValue(jsi::Runtime& runtime, const jni::local_ref& object); ++ ++} // namespace JSIJNIConversion ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JSharedArray.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JSharedArray.h +new file mode 100644 +index 0000000..4069c2d +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JSharedArray.h +@@ -0,0 +1,51 @@ ++// ++// Created by Marc Rousavy on 12.01.24. ++// ++ ++#pragma once ++ ++#include "JVisionCameraProxy.h" ++#include "MutableJByteBuffer.h" ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class JSharedArray : public jni::HybridClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/SharedArray;"; ++ static void registerNatives(); ++ ++public: ++ static jni::local_ref create(jsi::Runtime& runtime, jsi::ArrayBuffer arrayBuffer); ++ ++public: ++ jint getSize(); ++ jni::global_ref getByteBuffer(); ++ std::shared_ptr getArrayBuffer(); ++ ++private: ++ static auto constexpr TAG = "SharedArray"; ++ friend HybridBase; ++ jni::global_ref _javaPart; ++ jni::global_ref _byteBuffer; ++ std::shared_ptr _arrayBuffer; ++ int _size; ++ ++private: ++ explicit JSharedArray(jsi::Runtime& runtime, std::shared_ptr arrayBuffer); ++ explicit JSharedArray(const jni::alias_ref& javaThis, const jni::alias_ref& proxy, ++ int size); ++ explicit JSharedArray(const jni::alias_ref& javaThis, const jni::alias_ref& proxy, ++ jni::alias_ref byteBuffer); ++ static jni::local_ref initHybridAllocate(jni::alias_ref javaThis, ++ jni::alias_ref proxy, jint size); ++ static jni::local_ref initHybridWrap(jni::alias_ref javaThis, ++ jni::alias_ref proxy, ++ jni::alias_ref byteBuffer); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JVisionCameraProxy.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JVisionCameraProxy.h +new file mode 100644 +index 0000000..d06eaa8 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JVisionCameraProxy.h +@@ -0,0 +1,69 @@ ++// ++// Created by Marc Rousavy on 21.07.23. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++#include "JFrameProcessor.h" ++#include "JFrameProcessorPlugin.h" ++#include "JVisionCameraScheduler.h" ++ ++#include ++#include ++ ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++#include ++#endif ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class JVisionCameraProxy : public jni::HybridClass { ++public: ++ ~JVisionCameraProxy(); ++ static void registerNatives(); ++ ++ void setFrameProcessor(int viewTag, jsi::Runtime& runtime, const std::shared_ptr& frameProcessor); ++ void removeFrameProcessor(int viewTag); ++ jni::local_ref initFrameProcessorPlugin(const std::string& name, ++ jni::local_ref> options); ++ ++ jsi::Runtime* getJSRuntime() { ++ return _runtime; ++ } ++ ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++ jsi::Runtime& getWorkletRuntime() { ++ return _workletContext->getWorkletRuntime(); ++ } ++ ++ std::shared_ptr getWorkletContext() { ++ return _workletContext; ++ } ++#endif ++ ++private: ++ friend HybridBase; ++ jni::global_ref _javaPart; ++ jsi::Runtime* _runtime; ++#if VISION_CAMERA_ENABLE_FRAME_PROCESSORS ++ std::shared_ptr _workletContext; ++#endif ++ ++ static auto constexpr TAG = "VisionCameraProxy"; ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/VisionCameraProxy;"; ++ ++ explicit JVisionCameraProxy(const jni::alias_ref& javaThis, jsi::Runtime* jsRuntime, ++ const std::shared_ptr& jsCallInvoker, ++ const jni::global_ref& scheduler); ++ static jni::local_ref initHybrid(jni::alias_ref javaThis, jlong jsRuntimePointer, ++ jni::alias_ref jsCallInvokerHolder, ++ const jni::alias_ref& scheduler); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JVisionCameraScheduler.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JVisionCameraScheduler.h +new file mode 100644 +index 0000000..3c153fd +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/JVisionCameraScheduler.h +@@ -0,0 +1,49 @@ ++// ++// Created by Marc Rousavy on 25.07.21. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++/** ++ * A Scheduler that runs methods on the Frame Processor Thread (which is a Java Thread). ++ * In order to call something on the Java Frame Processor Thread, you have to: ++ * ++ * 1. Call `dispatchAsync(..)` with the given C++ Method. ++ * 2. Internally, `scheduleTrigger()` will get called, which is a Java Method. ++ * 3. The `scheduleTrigger()` Java Method will switch to the Frame Processor Java Thread and call ++ * `trigger()` on there ++ * 4. `trigger()` is a C++ function here that just calls the passed C++ Method from step 1. ++ */ ++class JVisionCameraScheduler : public jni::HybridClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/VisionCameraScheduler;"; ++ static jni::local_ref initHybrid(jni::alias_ref jThis); ++ static void registerNatives(); ++ ++ // schedules the given job to be run on the VisionCamera FP Thread at some future point in time ++ void dispatchAsync(const std::function& job); ++ ++private: ++ friend HybridBase; ++ jni::global_ref _javaPart; ++ std::queue> _jobs; ++ std::mutex _mutex; ++ ++ explicit JVisionCameraScheduler(jni::alias_ref jThis) : _javaPart(jni::make_global(jThis)) {} ++ ++ // Schedules a call to `trigger` on the VisionCamera FP Thread ++ void scheduleTrigger(); ++ // Calls the latest job in the job queue ++ void trigger(); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/MutableJByteBuffer.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/MutableJByteBuffer.h +new file mode 100644 +index 0000000..421af3e +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/MutableJByteBuffer.h +@@ -0,0 +1,33 @@ ++// ++// Created by Marc Rousavy on 17.01.24. ++// ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class MutableJByteBuffer : public jsi::MutableBuffer { ++public: ++ /** ++ * Wraps the given JByteBuffer in a MutableBuffer for use in JS. ++ */ ++ explicit MutableJByteBuffer(jni::alias_ref byteBuffer); ++ ~MutableJByteBuffer(); ++ ++public: ++ uint8_t* data() override; ++ size_t size() const override; ++ jni::global_ref getByteBuffer(); ++ ++private: ++ jni::global_ref _byteBuffer; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/MutableRawBuffer.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/MutableRawBuffer.h +new file mode 100644 +index 0000000..43121c2 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/MutableRawBuffer.h +@@ -0,0 +1,48 @@ ++// ++// MutableRawBuffer.h ++// VisionCamera ++// ++// Created by Marc Rousavy on 17.01.24. ++// Copyright © 2024 mrousavy. All rights reserved. ++// ++ ++#pragma once ++ ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class MutableRawBuffer : public jsi::MutableBuffer { ++ ++public: ++ explicit MutableRawBuffer(uint8_t* data, size_t size, bool freeOnDealloc) { ++ _size = size; ++ _data = data; ++ _freeOnDealloc = freeOnDealloc; ++ } ++ explicit MutableRawBuffer(size_t size) : MutableRawBuffer(new uint8_t[size], size, true) {} ++ ++ ~MutableRawBuffer() { ++ if (_freeOnDealloc) { ++ delete[] _data; ++ } ++ } ++ ++public: ++ uint8_t* data() override { ++ return _data; ++ } ++ size_t size() const override { ++ return _size; ++ } ++ ++private: ++ uint8_t* _data; ++ size_t _size; ++ bool _freeOnDealloc; ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/VisionCameraProxy.h b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/VisionCameraProxy.h +new file mode 100644 +index 0000000..6dc8fde +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/include/react-native-vision-camera/VisionCameraProxy.h +@@ -0,0 +1,45 @@ ++// ++// Created by Marc Rousavy on 21.07.23. ++// ++ ++#pragma once ++ ++#include ++ ++#include "JVisionCameraProxy.h" ++#include "JVisionCameraScheduler.h" ++ ++#include ++#include ++ ++namespace vision { ++ ++using namespace facebook; ++ ++class VisionCameraProxy : public jsi::HostObject { ++public: ++ explicit VisionCameraProxy(const jni::alias_ref& javaProxy); ++ ~VisionCameraProxy(); ++ ++public: ++ std::vector getPropertyNames(jsi::Runtime& runtime) override; ++ jsi::Value get(jsi::Runtime& runtime, const jsi::PropNameID& name) override; ++ ++private: ++ void setFrameProcessor(int viewTag, jsi::Runtime& runtime, const std::shared_ptr& frameProcessor); ++ void removeFrameProcessor(int viewTag); ++ jsi::Value initFrameProcessorPlugin(jsi::Runtime& runtime, const std::string& name, const jsi::Object& options); ++ ++private: ++ jni::global_ref _javaProxy; ++ static constexpr const char* TAG = "VisionCameraProxy"; ++}; ++ ++class VisionCameraInstaller : public jni::JavaClass { ++public: ++ static auto constexpr kJavaDescriptor = "Lcom/mrousavy/camera/frameprocessors/VisionCameraInstaller;"; ++ static void registerNatives(); ++ static void install(jni::alias_ref clazz, jni::alias_ref proxy); ++}; ++ ++} // namespace vision +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.arm64-v8a/abi.json b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.arm64-v8a/abi.json +new file mode 100644 +index 0000000..d307572 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.arm64-v8a/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "arm64-v8a", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.arm64-v8a/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.arm64-v8a/libVisionCamera.so +new file mode 100755 +index 0000000..a87c7e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.arm64-v8a/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.x86_64/abi.json b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.x86_64/abi.json +new file mode 100644 +index 0000000..c4d68de +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.x86_64/abi.json +@@ -0,0 +1,7 @@ ++{ ++ "abi": "x86_64", ++ "api": 24, ++ "ndk": 27, ++ "stl": "c++_shared", ++ "static": false ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.x86_64/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.x86_64/libVisionCamera.so +new file mode 100755 +index 0000000..4876e05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/libs/android.x86_64/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/module.json b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/module.json +new file mode 100644 +index 0000000..b6a8fc6 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/modules/VisionCamera/module.json +@@ -0,0 +1,4 @@ ++{ ++ "export_libraries": [], ++ "android": {} ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/prefab.json b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/prefab.json +new file mode 100644 +index 0000000..302e415 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab/prefab.json +@@ -0,0 +1,5 @@ ++{ ++ "name": "react_native_vision_camera", ++ "schema_version": 2, ++ "dependencies": [] ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug +new file mode 100644 +index 0000000..59ea06d +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package_header_only/prefab_publication.json/debug +@@ -0,0 +1,17 @@ ++{ ++ "installationFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/debug/prefab", ++ "gradlePath": ":react_native_vision_camera", ++ "packageInfo": { ++ "packageName": "react_native_vision_camera", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "VisionCamera", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/headers/visioncamera", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release +new file mode 100644 +index 0000000..f5fd876 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package_header_only/prefab_publication.json/release +@@ -0,0 +1,17 @@ ++{ ++ "installationFolder": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/intermediates/prefab_package/release/prefab", ++ "gradlePath": ":react_native_vision_camera", ++ "packageInfo": { ++ "packageName": "react_native_vision_camera", ++ "packageSchemaVersion": 2, ++ "packageDependencies": [], ++ "modules": [ ++ { ++ "moduleName": "VisionCamera", ++ "moduleHeaders": "/Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/build/headers/visioncamera", ++ "moduleExportLibraries": [], ++ "abis": [] ++ } ++ ] ++ } ++} +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react_native_vision_camera_debug.kotlin_module b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react_native_vision_camera_debug.kotlin_module +new file mode 100644 +index 0000000..2acdd76 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react_native_vision_camera_debug.kotlin_module differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/BuildConfig.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/BuildConfig.class +new file mode 100644 +index 0000000..365a6a8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/BuildConfig.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.class +new file mode 100644 +index 0000000..0cf7729 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Audio.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Audio.class +new file mode 100644 +index 0000000..d3fbe96 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Audio.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.class +new file mode 100644 +index 0000000..f009b18 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Companion.class +new file mode 100644 +index 0000000..498180e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Difference.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Difference.class +new file mode 100644 +index 0000000..04470e8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Difference.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.class +new file mode 100644 +index 0000000..9c96336 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.class +new file mode 100644 +index 0000000..66527cb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.class +new file mode 100644 +index 0000000..b81ebbe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.class +new file mode 100644 +index 0000000..c23894b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.class +new file mode 100644 +index 0000000..17ba2d7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output.class +new file mode 100644 +index 0000000..5a4648d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Output.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Photo.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Photo.class +new file mode 100644 +index 0000000..ca81576 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Photo.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Preview.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Preview.class +new file mode 100644 +index 0000000..90c073e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Preview.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Video.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Video.class +new file mode 100644 +index 0000000..32a6ed8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration$Video.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration.class +new file mode 100644 +index 0000000..1eecffd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraConfiguration.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraDeviceDetails$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraDeviceDetails$Companion.class +new file mode 100644 +index 0000000..a8ad777 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraDeviceDetails$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraDeviceDetails.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraDeviceDetails.class +new file mode 100644 +index 0000000..01caa89 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraDeviceDetails.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraError.class +new file mode 100644 +index 0000000..bf0aaeb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraErrorKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraErrorKt.class +new file mode 100644 +index 0000000..de80b33 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraErrorKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraInUseError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraInUseError.class +new file mode 100644 +index 0000000..cc954bc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraInUseError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraIsRestrictedError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraIsRestrictedError.class +new file mode 100644 +index 0000000..857150f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraIsRestrictedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraNotReadyError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraNotReadyError.class +new file mode 100644 +index 0000000..ded5429 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraNotReadyError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraPermissionError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraPermissionError.class +new file mode 100644 +index 0000000..4aff9b7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraPermissionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues$CameraQueue.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues$CameraQueue.class +new file mode 100644 +index 0000000..9eb5e56 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues$CameraQueue.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues$Companion.class +new file mode 100644 +index 0000000..a03b718 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues.class +new file mode 100644 +index 0000000..828ff60 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraQueues.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$1.class +new file mode 100644 +index 0000000..ea5f501 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$Callback.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$Callback.class +new file mode 100644 +index 0000000..99af308 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$Callback.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$Companion.class +new file mode 100644 +index 0000000..e8ac7a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.class +new file mode 100644 +index 0000000..83c025c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$configure$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$configure$1.class +new file mode 100644 +index 0000000..f3e2d0c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession$configure$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession.class +new file mode 100644 +index 0000000..b29a111 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.class +new file mode 100644 +index 0000000..98bd1c9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.class +new file mode 100644 +index 0000000..645e20a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt.class +new file mode 100644 +index 0000000..e24a4be +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_ConfigurationKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.class +new file mode 100644 +index 0000000..cba4014 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_FocusKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_FocusKt.class +new file mode 100644 +index 0000000..6089a1c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_FocusKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.class +new file mode 100644 +index 0000000..a96b730 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_PhotoKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_PhotoKt.class +new file mode 100644 +index 0000000..4adf0f1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_PhotoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_VideoKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_VideoKt.class +new file mode 100644 +index 0000000..20b1bd1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CameraSession_VideoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerFrame.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerFrame.class +new file mode 100644 +index 0000000..bc8ef54 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerFrame.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerPipeline$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerPipeline$Companion.class +new file mode 100644 +index 0000000..5843e36 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerPipeline$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerPipeline.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerPipeline.class +new file mode 100644 +index 0000000..e227187 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeScannerPipeline.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeTypeNotSupportedError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeTypeNotSupportedError.class +new file mode 100644 +index 0000000..7777bda +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/CodeTypeNotSupportedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/DoNotDisturbBugError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/DoNotDisturbBugError.class +new file mode 100644 +index 0000000..88e7295 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/DoNotDisturbBugError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/DurationLimitReachedError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/DurationLimitReachedError.class +new file mode 100644 +index 0000000..07196f3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/DurationLimitReachedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/EncoderError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/EncoderError.class +new file mode 100644 +index 0000000..932452c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/EncoderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FatalCameraError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FatalCameraError.class +new file mode 100644 +index 0000000..b9f6fdf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FatalCameraError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FileIOError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FileIOError.class +new file mode 100644 +index 0000000..15f4fbe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FileIOError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FileSizeLimitReachedError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FileSizeLimitReachedError.class +new file mode 100644 +index 0000000..4d83181 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FileSizeLimitReachedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FlashUnavailableError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FlashUnavailableError.class +new file mode 100644 +index 0000000..1cb0260 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FlashUnavailableError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusCanceledError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusCanceledError.class +new file mode 100644 +index 0000000..03af1a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusCanceledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusNotSupportedError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusNotSupportedError.class +new file mode 100644 +index 0000000..af59f64 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusNotSupportedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusRequiresPreviewError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusRequiresPreviewError.class +new file mode 100644 +index 0000000..70b781b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FocusRequiresPreviewError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FrameInvalidError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FrameInvalidError.class +new file mode 100644 +index 0000000..7247024 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FrameInvalidError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FrameProcessorPipeline.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FrameProcessorPipeline.class +new file mode 100644 +index 0000000..a6a2e78 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/FrameProcessorPipeline.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.class +new file mode 100644 +index 0000000..aee4528 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InsufficientStorageForRecorderError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InsufficientStorageForRecorderError.class +new file mode 100644 +index 0000000..aaea729 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InsufficientStorageForRecorderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidFpsError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidFpsError.class +new file mode 100644 +index 0000000..cf1b86f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidFpsError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidImageTypeError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidImageTypeError.class +new file mode 100644 +index 0000000..7868346 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidImageTypeError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidOutputConfigurationError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidOutputConfigurationError.class +new file mode 100644 +index 0000000..dc69376 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidOutputConfigurationError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidPathError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidPathError.class +new file mode 100644 +index 0000000..3156d2f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidPathError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidRecorderConfigurationError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidRecorderConfigurationError.class +new file mode 100644 +index 0000000..11c5f04 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidRecorderConfigurationError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidTypeScriptUnionError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidTypeScriptUnionError.class +new file mode 100644 +index 0000000..bab8a18 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidTypeScriptUnionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidVideoHdrError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidVideoHdrError.class +new file mode 100644 +index 0000000..dca32d8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidVideoHdrError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidVideoStabilizationMode.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidVideoStabilizationMode.class +new file mode 100644 +index 0000000..4fba3d5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/InvalidVideoStabilizationMode.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/LocationPermissionError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/LocationPermissionError.class +new file mode 100644 +index 0000000..9d8028c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/LocationPermissionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.class +new file mode 100644 +index 0000000..3a1229e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MaxCamerasInUseError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MaxCamerasInUseError.class +new file mode 100644 +index 0000000..a37ed4b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MaxCamerasInUseError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MetadataProvider$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MetadataProvider$Companion.class +new file mode 100644 +index 0000000..169608a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MetadataProvider$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MetadataProvider.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MetadataProvider.class +new file mode 100644 +index 0000000..a47ae8a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MetadataProvider.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MicrophonePermissionError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MicrophonePermissionError.class +new file mode 100644 +index 0000000..82d4e6b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/MicrophonePermissionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoCameraDeviceError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoCameraDeviceError.class +new file mode 100644 +index 0000000..b53e5ef +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoCameraDeviceError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoDataError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoDataError.class +new file mode 100644 +index 0000000..e6852e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoDataError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoOutputsError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoOutputsError.class +new file mode 100644 +index 0000000..8dcf21f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoOutputsError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoRecordingInProgressError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoRecordingInProgressError.class +new file mode 100644 +index 0000000..a4f292b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/NoRecordingInProgressError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$Callback.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$Callback.class +new file mode 100644 +index 0000000..e3dd940 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$Callback.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$Companion.class +new file mode 100644 +index 0000000..690294e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$WhenMappings.class +new file mode 100644 +index 0000000..5a9c56b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$displayListener$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$displayListener$1.class +new file mode 100644 +index 0000000..6c45339 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$displayListener$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$orientationListener$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$orientationListener$1.class +new file mode 100644 +index 0000000..e646405 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager$orientationListener$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager.class +new file mode 100644 +index 0000000..4d99f94 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/OrientationManager.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/Photo.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/Photo.class +new file mode 100644 +index 0000000..3ec6527 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/Photo.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.class +new file mode 100644 +index 0000000..9bc5d27 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PhotoNotEnabledError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PhotoNotEnabledError.class +new file mode 100644 +index 0000000..b1d02bb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PhotoNotEnabledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PixelFormatNotSupportedError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PixelFormatNotSupportedError.class +new file mode 100644 +index 0000000..ca43f3c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PixelFormatNotSupportedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.class +new file mode 100644 +index 0000000..22f3174 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecorderError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecorderError.class +new file mode 100644 +index 0000000..36285f2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecorderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingCanceledError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingCanceledError.class +new file mode 100644 +index 0000000..4c69352 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingCanceledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingInProgressError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingInProgressError.class +new file mode 100644 +index 0000000..ed60304 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingInProgressError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.class +new file mode 100644 +index 0000000..533dda8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecoverableError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecoverableError.class +new file mode 100644 +index 0000000..82bb359 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/RecoverableError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/SnapshotFailedError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/SnapshotFailedError.class +new file mode 100644 +index 0000000..179f3f4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/SnapshotFailedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.class +new file mode 100644 +index 0000000..f7b1656 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/UnknownCameraError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/UnknownCameraError.class +new file mode 100644 +index 0000000..3e49871 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/UnknownCameraError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/UnknownRecorderError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/UnknownRecorderError.class +new file mode 100644 +index 0000000..7c9941e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/UnknownRecorderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/VideoNotEnabledError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/VideoNotEnabledError.class +new file mode 100644 +index 0000000..23b609a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/VideoNotEnabledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/ViewNotFoundError.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/ViewNotFoundError.class +new file mode 100644 +index 0000000..fec9a0d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/ViewNotFoundError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraInfo_idKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraInfo_idKt.class +new file mode 100644 +index 0000000..f25de38 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraInfo_idKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.class +new file mode 100644 +index 0000000..c573283 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.class +new file mode 100644 +index 0000000..9a98902 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.class +new file mode 100644 +index 0000000..1ea3d43 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.class +new file mode 100644 +index 0000000..df8c323 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.class +new file mode 100644 +index 0000000..40122cf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.class +new file mode 100644 +index 0000000..b406b00 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.class +new file mode 100644 +index 0000000..b0df200 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.class +new file mode 100644 +index 0000000..c618283 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.class +new file mode 100644 +index 0000000..efa937c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/PhotoFileInfo.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/PhotoFileInfo.class +new file mode 100644 +index 0000000..9789f23 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/PhotoFileInfo.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.class +new file mode 100644 +index 0000000..0de7df4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.class +new file mode 100644 +index 0000000..f0233d2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.class +new file mode 100644 +index 0000000..9c081eb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.class +new file mode 100644 +index 0000000..72990a5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.class +new file mode 100644 +index 0000000..d16f6f9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/AutoFocusSystem.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/AutoFocusSystem.class +new file mode 100644 +index 0000000..f6e81ad +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/AutoFocusSystem.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.class +new file mode 100644 +index 0000000..a77abad +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CameraDeviceFormat.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CameraDeviceFormat.class +new file mode 100644 +index 0000000..e72b3e5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CameraDeviceFormat.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.class +new file mode 100644 +index 0000000..8c1bbf1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeScannerOptions.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeScannerOptions.class +new file mode 100644 +index 0000000..71bb75d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeScannerOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType$Companion.class +new file mode 100644 +index 0000000..b2b9018 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType$WhenMappings.class +new file mode 100644 +index 0000000..2382145 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType.class +new file mode 100644 +index 0000000..77b4bf5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/CodeType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/DeviceType.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/DeviceType.class +new file mode 100644 +index 0000000..bc4bb14 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/DeviceType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash$Companion.class +new file mode 100644 +index 0000000..3c75436 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash$WhenMappings.class +new file mode 100644 +index 0000000..699450b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash.class +new file mode 100644 +index 0000000..a3e71fa +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Flash.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel$Companion.class +new file mode 100644 +index 0000000..1857b72 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.class +new file mode 100644 +index 0000000..d02417a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel.class +new file mode 100644 +index 0000000..e48495f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/HardwareLevel.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/JSUnionValue$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/JSUnionValue$Companion.class +new file mode 100644 +index 0000000..5ad4f98 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/JSUnionValue$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/JSUnionValue.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/JSUnionValue.class +new file mode 100644 +index 0000000..8ea2c17 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/JSUnionValue.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation$Companion.class +new file mode 100644 +index 0000000..73ac191 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation$WhenMappings.class +new file mode 100644 +index 0000000..9750b03 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation.class +new file mode 100644 +index 0000000..6985f49 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Orientation.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/OutputOrientation$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/OutputOrientation$Companion.class +new file mode 100644 +index 0000000..e850f70 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/OutputOrientation$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/OutputOrientation.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/OutputOrientation.class +new file mode 100644 +index 0000000..b74b018 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/OutputOrientation.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PermissionStatus$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PermissionStatus$Companion.class +new file mode 100644 +index 0000000..92105c5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PermissionStatus$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PermissionStatus.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PermissionStatus.class +new file mode 100644 +index 0000000..13499ab +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PermissionStatus.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat$Companion.class +new file mode 100644 +index 0000000..340fb1a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.class +new file mode 100644 +index 0000000..2f68922 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat.class +new file mode 100644 +index 0000000..6983c67 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PixelFormat.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Position$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Position$Companion.class +new file mode 100644 +index 0000000..58bde47 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Position$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Position.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Position.class +new file mode 100644 +index 0000000..bf019e0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Position.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType$Companion.class +new file mode 100644 +index 0000000..a33c4e1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.class +new file mode 100644 +index 0000000..fc78bdb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType.class +new file mode 100644 +index 0000000..36d435c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/PreviewViewType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance$Companion.class +new file mode 100644 +index 0000000..9fe6e1d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.class +new file mode 100644 +index 0000000..9858275 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance.class +new file mode 100644 +index 0000000..52894db +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/QualityBalance.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.class +new file mode 100644 +index 0000000..2f12f97 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/RecordVideoOptions.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/RecordVideoOptions.class +new file mode 100644 +index 0000000..b2c8fbf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/RecordVideoOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode$Companion.class +new file mode 100644 +index 0000000..17e5c0e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.class +new file mode 100644 +index 0000000..e38329e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode.class +new file mode 100644 +index 0000000..5d8f4b8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ResizeMode.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ShutterType.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ShutterType.class +new file mode 100644 +index 0000000..12938bb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/ShutterType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.class +new file mode 100644 +index 0000000..d8c6638 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakePhotoOptions.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakePhotoOptions.class +new file mode 100644 +index 0000000..3d09bc0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakePhotoOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.class +new file mode 100644 +index 0000000..7ae8ebc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakeSnapshotOptions.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakeSnapshotOptions.class +new file mode 100644 +index 0000000..c76b4c3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/TakeSnapshotOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Torch$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Torch$Companion.class +new file mode 100644 +index 0000000..9e2124a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Torch$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Torch.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Torch.class +new file mode 100644 +index 0000000..9053a0c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Torch.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Video.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Video.class +new file mode 100644 +index 0000000..2825abe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/Video.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec$Companion.class +new file mode 100644 +index 0000000..8befe6a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.class +new file mode 100644 +index 0000000..0ce637a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec.class +new file mode 100644 +index 0000000..200951e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoCodec.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType$Companion.class +new file mode 100644 +index 0000000..763d707 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.class +new file mode 100644 +index 0000000..0dce00d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType.class +new file mode 100644 +index 0000000..3f06559 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoFileType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.class +new file mode 100644 +index 0000000..53a23ab +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.class +new file mode 100644 +index 0000000..ee7dc77 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode.class +new file mode 100644 +index 0000000..3d50c7b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/types/VideoStabilizationMode.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.class +new file mode 100644 +index 0000000..9e7cf8d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/CamcorderProfileUtils.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/CamcorderProfileUtils.class +new file mode 100644 +index 0000000..4d9e236 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/CamcorderProfileUtils.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/FileUtils$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/FileUtils$Companion.class +new file mode 100644 +index 0000000..d4f26d0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/FileUtils$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/FileUtils.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/FileUtils.class +new file mode 100644 +index 0000000..bc07632 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/FileUtils.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.class +new file mode 100644 +index 0000000..8a3b875 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/ImageFormatUtils.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/ImageFormatUtils.class +new file mode 100644 +index 0000000..b9091d8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/ImageFormatUtils.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/OutputFile.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/OutputFile.class +new file mode 100644 +index 0000000..e07296d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/OutputFile.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.class +new file mode 100644 +index 0000000..86929f3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.class +new file mode 100644 +index 0000000..2fee2e5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt.class +new file mode 100644 +index 0000000..132d7ba +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/core/utils/RunOnUiThreadKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/Frame.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/Frame.class +new file mode 100644 +index 0000000..57b7038 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/Frame.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessor.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessor.class +new file mode 100644 +index 0000000..52370b4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessor.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.class +new file mode 100644 +index 0000000..1bee03a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPlugin.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.class +new file mode 100644 +index 0000000..411e8d1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry$PluginInitializer.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.class +new file mode 100644 +index 0000000..a7e0286 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/FrameProcessorPluginRegistry.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/SharedArray.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/SharedArray.class +new file mode 100644 +index 0000000..9996de1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/SharedArray.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.class +new file mode 100644 +index 0000000..e545cb9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraInstaller.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.class +new file mode 100644 +index 0000000..a962d75 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraProxy.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraProxy.class +new file mode 100644 +index 0000000..3511a99 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraProxy.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.class +new file mode 100644 +index 0000000..87ba65f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/frameprocessors/VisionCameraScheduler.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.class +new file mode 100644 +index 0000000..56327de +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/AverageFpsChangedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/AverageFpsChangedEvent.class +new file mode 100644 +index 0000000..6d0e6ba +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/AverageFpsChangedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.class +new file mode 100644 +index 0000000..0a47145 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraCodeScannedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraCodeScannedEvent.class +new file mode 100644 +index 0000000..83b9970 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraCodeScannedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$1.class +new file mode 100644 +index 0000000..8da0ac1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$Companion.class +new file mode 100644 +index 0000000..6014630 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$callback$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$callback$1.class +new file mode 100644 +index 0000000..b940104 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager$callback$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager.class +new file mode 100644 +index 0000000..bebcbe3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraDevicesManager.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraErrorEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraErrorEvent$Companion.class +new file mode 100644 +index 0000000..553af95 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraErrorEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraErrorEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraErrorEvent.class +new file mode 100644 +index 0000000..d001349 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraErrorEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraInitializedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraInitializedEvent$Companion.class +new file mode 100644 +index 0000000..4a9d587 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraInitializedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraInitializedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraInitializedEvent.class +new file mode 100644 +index 0000000..941e5b9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraInitializedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.class +new file mode 100644 +index 0000000..2dfc158 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.class +new file mode 100644 +index 0000000..c335ed9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPackage.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPackage.class +new file mode 100644 +index 0000000..8f6faa3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPackage.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.class +new file mode 100644 +index 0000000..2f19f41 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.class +new file mode 100644 +index 0000000..0899b0a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.class +new file mode 100644 +index 0000000..63b2f37 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStartedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStartedEvent.class +new file mode 100644 +index 0000000..5c6b0f7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStartedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.class +new file mode 100644 +index 0000000..b912442 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStoppedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStoppedEvent.class +new file mode 100644 +index 0000000..d354405 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraPreviewStoppedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraShutterEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraShutterEvent$Companion.class +new file mode 100644 +index 0000000..7d52b90 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraShutterEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraShutterEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraShutterEvent.class +new file mode 100644 +index 0000000..31912ea +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraShutterEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStartedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStartedEvent$Companion.class +new file mode 100644 +index 0000000..908fac6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStartedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStartedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStartedEvent.class +new file mode 100644 +index 0000000..a2df142 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStartedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStoppedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStoppedEvent$Companion.class +new file mode 100644 +index 0000000..c07826b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStoppedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStoppedEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStoppedEvent.class +new file mode 100644 +index 0000000..26f29f4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraStoppedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$Companion.class +new file mode 100644 +index 0000000..a00f19a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.class +new file mode 100644 +index 0000000..753b2d3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$update$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$update$1.class +new file mode 100644 +index 0000000..e799d36 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$update$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$updatePreview$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$updatePreview$1.class +new file mode 100644 +index 0000000..2988ad4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$updatePreview$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.class +new file mode 100644 +index 0000000..9a5d31f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView.class +new file mode 100644 +index 0000000..53bbcf0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewManager$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewManager$Companion.class +new file mode 100644 +index 0000000..714127b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewManager$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewManager.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewManager.class +new file mode 100644 +index 0000000..33f613f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewManager.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$Companion.class +new file mode 100644 +index 0000000..79d516e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.class +new file mode 100644 +index 0000000..3bf0c52 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.class +new file mode 100644 +index 0000000..a812a0b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$focus$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$focus$1.class +new file mode 100644 +index 0000000..9ed8296 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$focus$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.class +new file mode 100644 +index 0000000..92c67a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.class +new file mode 100644 +index 0000000..a786d1e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$startRecording$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$startRecording$1.class +new file mode 100644 +index 0000000..7483697 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$startRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.class +new file mode 100644 +index 0000000..555fe64 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.class +new file mode 100644 +index 0000000..b609100 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.class +new file mode 100644 +index 0000000..8f3a14e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.class +new file mode 100644 +index 0000000..03808a6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule.class +new file mode 100644 +index 0000000..cbc1853 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewModule.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.class +new file mode 100644 +index 0000000..c14ea8e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewReadyEvent.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewReadyEvent.class +new file mode 100644 +index 0000000..86116d5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraViewReadyEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_EventsKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_EventsKt.class +new file mode 100644 +index 0000000..eef49fc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_EventsKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.class +new file mode 100644 +index 0000000..6ebb2ae +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.class +new file mode 100644 +index 0000000..78b7a34 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt.class +new file mode 100644 +index 0000000..11c270d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_FocusKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_RecordVideoKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_RecordVideoKt.class +new file mode 100644 +index 0000000..2c6301a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_RecordVideoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.class +new file mode 100644 +index 0000000..184e4be +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakePhotoKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakePhotoKt.class +new file mode 100644 +index 0000000..d88d80c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakePhotoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.class +new file mode 100644 +index 0000000..5c0f6e8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector$Callback.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector$Callback.class +new file mode 100644 +index 0000000..20ef5dc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector$Callback.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.class +new file mode 100644 +index 0000000..f6195dc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector.class +new file mode 100644 +index 0000000..8e44306 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/FpsSampleCollector.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/List_toJSValueKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/List_toJSValueKt.class +new file mode 100644 +index 0000000..354133a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/List_toJSValueKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.class +new file mode 100644 +index 0000000..7c2d99f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.class +new file mode 100644 +index 0000000..324cd53 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/utils/CallbackPromiseKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/utils/CallbackPromiseKt.class +new file mode 100644 +index 0000000..837dc0d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/utils/CallbackPromiseKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/utils/WithPromiseKt.class b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/utils/WithPromiseKt.class +new file mode 100644 +index 0000000..28c141d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/mrousavy/camera/react/utils/WithPromiseKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..88aa01b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libVisionCamera.so +new file mode 100644 +index 0000000..a87c7e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/arm64-v8a/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libVisionCamera.so b/node_modules/react-native-vision-camera/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libVisionCamera.so +new file mode 100644 +index 0000000..4876e05 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/intermediates/stripped_native_libs/debug/stripDebugDebugSymbols/out/lib/x86_64/libVisionCamera.so differ +diff --git a/node_modules/react-native-vision-camera/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-vision-camera/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..4f75aa2 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1 @@ ++com.mrousavy.camera +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..3d67ce9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..8c439e6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..95d9dc6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..6b9041b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values +new file mode 100644 +index 0000000..0489b5f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..8269c52 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +new file mode 100644 +index 0000000..59d0275 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +@@ -0,0 +1 @@ ++: +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..ac94c39 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..782eb4c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..62f9d72 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +new file mode 100644 +index 0000000..21b0a67 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +new file mode 100644 +index 0000000..a49acfa +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +new file mode 100644 +index 0000000..170c930 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +new file mode 100644 +index 0000000..bd359c7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +new file mode 100644 +index 0000000..516fe32 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +new file mode 100644 +index 0000000..62f9d72 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..21b0a67 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +new file mode 100644 +index 0000000..a49acfa +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values +new file mode 100644 +index 0000000..dc9ebc5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +new file mode 100644 +index 0000000..4c40920 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s +new file mode 100644 +index 0000000..e527882 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s +@@ -0,0 +1 @@ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +new file mode 100644 +index 0000000..bd359c7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +new file mode 100644 +index 0000000..3cc2af5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +new file mode 100644 +index 0000000..2d42d73 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +new file mode 100644 +index 0000000..b0fb8fd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +new file mode 100644 +index 0000000..385642d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +new file mode 100644 +index 0000000..97e2da6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +new file mode 100644 +index 0000000..8988382 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab +new file mode 100644 +index 0000000..e0e5e1c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream +new file mode 100644 +index 0000000..60dc56f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len +new file mode 100644 +index 0000000..60a4017 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len +new file mode 100644 +index 0000000..a9f80ae +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at +new file mode 100644 +index 0000000..b574c9d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i +new file mode 100644 +index 0000000..6924af1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +new file mode 100644 +index 0000000..450be8d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +new file mode 100644 +index 0000000..3559eb4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..8c36966 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +new file mode 100644 +index 0000000..c59ae7f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values +new file mode 100644 +index 0000000..5c63988 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +new file mode 100644 +index 0000000..07132d4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +new file mode 100644 +index 0000000..0533f99 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +@@ -0,0 +1 @@ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +new file mode 100644 +index 0000000..04a95bd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab +new file mode 100644 +index 0000000..00ed442 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream +new file mode 100644 +index 0000000..2ca0761 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +new file mode 100644 +index 0000000..0665bf6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len +new file mode 100644 +index 0000000..be9fd94 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at +new file mode 100644 +index 0000000..2be90da +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i +new file mode 100644 +index 0000000..55842cd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +new file mode 100644 +index 0000000..dc3bccd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +new file mode 100644 +index 0000000..ba70ce4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +new file mode 100644 +index 0000000..6a1ef21 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +new file mode 100644 +index 0000000..fa3789c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values +new file mode 100644 +index 0000000..52d10d8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +new file mode 100644 +index 0000000..cfdc73c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +new file mode 100644 +index 0000000..6c44130 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +@@ -0,0 +1 @@ ++å +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +new file mode 100644 +index 0000000..ac54428 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +new file mode 100644 +index 0000000..dfd2152 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +new file mode 100644 +index 0000000..8c439e6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +new file mode 100644 +index 0000000..95d9dc6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +new file mode 100644 +index 0000000..6b9041b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +new file mode 100644 +index 0000000..4be732a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +new file mode 100644 +index 0000000..ac94c39 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +new file mode 100644 +index 0000000..0dcb0bf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +new file mode 100644 +index 0000000..e5633e7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +new file mode 100644 +index 0000000..703fabb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +new file mode 100644 +index 0000000..14f7c06 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +new file mode 100644 +index 0000000..be3d020 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +new file mode 100644 +index 0000000..58f2a9a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +new file mode 100644 +index 0000000..8906ac3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +new file mode 100644 +index 0000000..ca4db5e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +new file mode 100644 +index 0000000..7919f39 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +new file mode 100644 +index 0000000..bb9575b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +new file mode 100644 +index 0000000..955dce7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +new file mode 100644 +index 0000000..6b2481a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +new file mode 100644 +index 0000000..6581efe +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +@@ -0,0 +1,2 @@ ++73 ++0 +\ No newline at end of file +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +new file mode 100644 +index 0000000..c1aab44 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +new file mode 100644 +index 0000000..b77f68e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +new file mode 100644 +index 0000000..95d9dc6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +new file mode 100644 +index 0000000..6b9041b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +new file mode 100644 +index 0000000..1a7d9f9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +new file mode 100644 +index 0000000..80b45ab +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +new file mode 100644 +index 0000000..515b2c2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +new file mode 100644 +index 0000000..ce7188d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +new file mode 100644 +index 0000000..37934e8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +new file mode 100644 +index 0000000..6b9041b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +new file mode 100644 +index 0000000..4cb69b8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +new file mode 100644 +index 0000000..108d0fb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +new file mode 100644 +index 0000000..20d8b00 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +new file mode 100644 +index 0000000..473382f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +new file mode 100644 +index 0000000..0022cac +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +new file mode 100644 +index 0000000..de4d649 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +new file mode 100644 +index 0000000..872e5b4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +new file mode 100644 +index 0000000..b5dc5ec +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +new file mode 100644 +index 0000000..4424406 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +new file mode 100644 +index 0000000..2052008 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ +diff --git a/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +new file mode 100644 +index 0000000..f2f9880 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ +diff --git a/node_modules/react-native-vision-camera/android/build/outputs/aar/react_native_vision_camera-debug.aar b/node_modules/react-native-vision-camera/android/build/outputs/aar/react_native_vision_camera-debug.aar +new file mode 100644 +index 0000000..becf830 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/outputs/aar/react_native_vision_camera-debug.aar differ +diff --git a/node_modules/react-native-vision-camera/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-vision-camera/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..be9f000 +--- /dev/null ++++ b/node_modules/react-native-vision-camera/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,16 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml:1:1-3:12 ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml:1:1-3:12 ++ package ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml:1:11-69 ++uses-sdk ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml ++INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/yogesh/Programming/100ms-react-native/packages/react-native-room-kit/example/node_modules/react-native-vision-camera/android/src/main/AndroidManifest.xml +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-vision-camera/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..6846071 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/META-INF/react_native_vision_camera_debug.kotlin_module b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/META-INF/react_native_vision_camera_debug.kotlin_module +new file mode 100644 +index 0000000..2acdd76 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/META-INF/react_native_vision_camera_debug.kotlin_module differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.class +new file mode 100644 +index 0000000..0cf7729 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$AbortThrow.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Audio.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Audio.class +new file mode 100644 +index 0000000..d3fbe96 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Audio.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.class +new file mode 100644 +index 0000000..f009b18 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$CodeScanner.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Companion.class +new file mode 100644 +index 0000000..498180e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Difference.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Difference.class +new file mode 100644 +index 0000000..04470e8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Difference.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.class +new file mode 100644 +index 0000000..9c96336 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$FrameProcessor.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.class +new file mode 100644 +index 0000000..66527cb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.class +new file mode 100644 +index 0000000..b81ebbe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Disabled.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.class +new file mode 100644 +index 0000000..c23894b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.class +new file mode 100644 +index 0000000..17ba2d7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output$Enabled.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output.class +new file mode 100644 +index 0000000..5a4648d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Output.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Photo.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Photo.class +new file mode 100644 +index 0000000..ca81576 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Photo.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Preview.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Preview.class +new file mode 100644 +index 0000000..90c073e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Preview.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Video.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Video.class +new file mode 100644 +index 0000000..32a6ed8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration$Video.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration.class +new file mode 100644 +index 0000000..1eecffd +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraConfiguration.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraDeviceDetails$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraDeviceDetails$Companion.class +new file mode 100644 +index 0000000..a8ad777 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraDeviceDetails$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraDeviceDetails.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraDeviceDetails.class +new file mode 100644 +index 0000000..01caa89 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraDeviceDetails.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraError.class +new file mode 100644 +index 0000000..bf0aaeb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraErrorKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraErrorKt.class +new file mode 100644 +index 0000000..de80b33 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraErrorKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraInUseError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraInUseError.class +new file mode 100644 +index 0000000..cc954bc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraInUseError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraIsRestrictedError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraIsRestrictedError.class +new file mode 100644 +index 0000000..857150f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraIsRestrictedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraNotReadyError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraNotReadyError.class +new file mode 100644 +index 0000000..ded5429 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraNotReadyError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraPermissionError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraPermissionError.class +new file mode 100644 +index 0000000..4aff9b7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraPermissionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues$CameraQueue.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues$CameraQueue.class +new file mode 100644 +index 0000000..9eb5e56 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues$CameraQueue.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues$Companion.class +new file mode 100644 +index 0000000..a03b718 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues.class +new file mode 100644 +index 0000000..828ff60 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraQueues.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$1.class +new file mode 100644 +index 0000000..ea5f501 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$Callback.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$Callback.class +new file mode 100644 +index 0000000..99af308 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$Callback.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$Companion.class +new file mode 100644 +index 0000000..e8ac7a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.class +new file mode 100644 +index 0000000..83c025c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$close$$inlined$runOnUiThread$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$configure$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$configure$1.class +new file mode 100644 +index 0000000..f3e2d0c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession$configure$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession.class +new file mode 100644 +index 0000000..b29a111 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.class +new file mode 100644 +index 0000000..98bd1c9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$configureCamera$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.class +new file mode 100644 +index 0000000..645e20a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt$sam$androidx_lifecycle_Observer$0.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt.class +new file mode 100644 +index 0000000..e24a4be +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_ConfigurationKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.class +new file mode 100644 +index 0000000..cba4014 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_FocusKt$focus$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_FocusKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_FocusKt.class +new file mode 100644 +index 0000000..6089a1c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_FocusKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.class +new file mode 100644 +index 0000000..a96b730 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_PhotoKt$takePhoto$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_PhotoKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_PhotoKt.class +new file mode 100644 +index 0000000..4adf0f1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_PhotoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_VideoKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_VideoKt.class +new file mode 100644 +index 0000000..20b1bd1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CameraSession_VideoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerFrame.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerFrame.class +new file mode 100644 +index 0000000..bc8ef54 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerFrame.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerPipeline$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerPipeline$Companion.class +new file mode 100644 +index 0000000..5843e36 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerPipeline$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerPipeline.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerPipeline.class +new file mode 100644 +index 0000000..e227187 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeScannerPipeline.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeTypeNotSupportedError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeTypeNotSupportedError.class +new file mode 100644 +index 0000000..7777bda +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/CodeTypeNotSupportedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/DoNotDisturbBugError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/DoNotDisturbBugError.class +new file mode 100644 +index 0000000..88e7295 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/DoNotDisturbBugError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/DurationLimitReachedError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/DurationLimitReachedError.class +new file mode 100644 +index 0000000..07196f3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/DurationLimitReachedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/EncoderError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/EncoderError.class +new file mode 100644 +index 0000000..932452c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/EncoderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FatalCameraError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FatalCameraError.class +new file mode 100644 +index 0000000..b9f6fdf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FatalCameraError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FileIOError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FileIOError.class +new file mode 100644 +index 0000000..15f4fbe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FileIOError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FileSizeLimitReachedError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FileSizeLimitReachedError.class +new file mode 100644 +index 0000000..4d83181 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FileSizeLimitReachedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FlashUnavailableError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FlashUnavailableError.class +new file mode 100644 +index 0000000..1cb0260 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FlashUnavailableError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusCanceledError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusCanceledError.class +new file mode 100644 +index 0000000..03af1a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusCanceledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusNotSupportedError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusNotSupportedError.class +new file mode 100644 +index 0000000..af59f64 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusNotSupportedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusRequiresPreviewError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusRequiresPreviewError.class +new file mode 100644 +index 0000000..70b781b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FocusRequiresPreviewError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FrameInvalidError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FrameInvalidError.class +new file mode 100644 +index 0000000..7247024 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FrameInvalidError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FrameProcessorPipeline.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FrameProcessorPipeline.class +new file mode 100644 +index 0000000..a6a2e78 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/FrameProcessorPipeline.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.class +new file mode 100644 +index 0000000..aee4528 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/HardwareBuffersNotAvailableError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InsufficientStorageForRecorderError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InsufficientStorageForRecorderError.class +new file mode 100644 +index 0000000..aaea729 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InsufficientStorageForRecorderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidFpsError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidFpsError.class +new file mode 100644 +index 0000000..cf1b86f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidFpsError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidImageTypeError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidImageTypeError.class +new file mode 100644 +index 0000000..7868346 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidImageTypeError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidOutputConfigurationError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidOutputConfigurationError.class +new file mode 100644 +index 0000000..dc69376 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidOutputConfigurationError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidPathError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidPathError.class +new file mode 100644 +index 0000000..3156d2f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidPathError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidRecorderConfigurationError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidRecorderConfigurationError.class +new file mode 100644 +index 0000000..11c5f04 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidRecorderConfigurationError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidTypeScriptUnionError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidTypeScriptUnionError.class +new file mode 100644 +index 0000000..bab8a18 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidTypeScriptUnionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidVideoHdrError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidVideoHdrError.class +new file mode 100644 +index 0000000..dca32d8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidVideoHdrError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidVideoStabilizationMode.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidVideoStabilizationMode.class +new file mode 100644 +index 0000000..4fba3d5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/InvalidVideoStabilizationMode.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/LocationPermissionError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/LocationPermissionError.class +new file mode 100644 +index 0000000..9d8028c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/LocationPermissionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.class +new file mode 100644 +index 0000000..3a1229e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/LowLightBoostNotSupportedWithHdr.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MaxCamerasInUseError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MaxCamerasInUseError.class +new file mode 100644 +index 0000000..a37ed4b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MaxCamerasInUseError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MetadataProvider$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MetadataProvider$Companion.class +new file mode 100644 +index 0000000..169608a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MetadataProvider$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MetadataProvider.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MetadataProvider.class +new file mode 100644 +index 0000000..a47ae8a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MetadataProvider.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MicrophonePermissionError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MicrophonePermissionError.class +new file mode 100644 +index 0000000..82d4e6b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/MicrophonePermissionError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoCameraDeviceError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoCameraDeviceError.class +new file mode 100644 +index 0000000..b53e5ef +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoCameraDeviceError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoDataError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoDataError.class +new file mode 100644 +index 0000000..e6852e2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoDataError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoOutputsError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoOutputsError.class +new file mode 100644 +index 0000000..8dcf21f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoOutputsError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoRecordingInProgressError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoRecordingInProgressError.class +new file mode 100644 +index 0000000..a4f292b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/NoRecordingInProgressError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$Callback.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$Callback.class +new file mode 100644 +index 0000000..e3dd940 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$Callback.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$Companion.class +new file mode 100644 +index 0000000..690294e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$WhenMappings.class +new file mode 100644 +index 0000000..5a9c56b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$displayListener$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$displayListener$1.class +new file mode 100644 +index 0000000..6c45339 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$displayListener$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$orientationListener$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$orientationListener$1.class +new file mode 100644 +index 0000000..e646405 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager$orientationListener$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager.class +new file mode 100644 +index 0000000..4d99f94 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/OrientationManager.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/Photo.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/Photo.class +new file mode 100644 +index 0000000..3ec6527 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/Photo.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.class +new file mode 100644 +index 0000000..9bc5d27 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PhotoHdrAndVideoHdrNotSupportedSimultaneously.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PhotoNotEnabledError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PhotoNotEnabledError.class +new file mode 100644 +index 0000000..b1d02bb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PhotoNotEnabledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PixelFormatNotSupportedError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PixelFormatNotSupportedError.class +new file mode 100644 +index 0000000..ca43f3c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PixelFormatNotSupportedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.class +new file mode 100644 +index 0000000..22f3174 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/PropRequiresFormatToBeNonNullError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecorderError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecorderError.class +new file mode 100644 +index 0000000..36285f2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecorderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingCanceledError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingCanceledError.class +new file mode 100644 +index 0000000..4c69352 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingCanceledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingInProgressError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingInProgressError.class +new file mode 100644 +index 0000000..ed60304 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingInProgressError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.class +new file mode 100644 +index 0000000..533dda8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecordingWhileFrameProcessingUnavailable.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecoverableError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecoverableError.class +new file mode 100644 +index 0000000..82bb359 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/RecoverableError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/SnapshotFailedError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/SnapshotFailedError.class +new file mode 100644 +index 0000000..179f3f4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/SnapshotFailedError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.class +new file mode 100644 +index 0000000..f7b1656 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/SnapshotFailedPreviewNotEnabledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/UnknownCameraError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/UnknownCameraError.class +new file mode 100644 +index 0000000..3e49871 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/UnknownCameraError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/UnknownRecorderError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/UnknownRecorderError.class +new file mode 100644 +index 0000000..7c9941e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/UnknownRecorderError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/VideoNotEnabledError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/VideoNotEnabledError.class +new file mode 100644 +index 0000000..23b609a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/VideoNotEnabledError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/ViewNotFoundError.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/ViewNotFoundError.class +new file mode 100644 +index 0000000..fec9a0d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/ViewNotFoundError.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraInfo_idKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraInfo_idKt.class +new file mode 100644 +index 0000000..f25de38 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraInfo_idKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.class +new file mode 100644 +index 0000000..c573283 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_byIdKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.class +new file mode 100644 +index 0000000..9a98902 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt$withExtension$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.class +new file mode 100644 +index 0000000..1ea3d43 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/CameraSelector_withExtensionKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.class +new file mode 100644 +index 0000000..df8c323 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/DynamicRange_isSDRKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.class +new file mode 100644 +index 0000000..40122cf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageAnalysis_Builder_setTargetFrameRateKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.class +new file mode 100644 +index 0000000..b406b00 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt$takePicture$2$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.class +new file mode 100644 +index 0000000..b0df200 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ImageCapture_takePictureKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.class +new file mode 100644 +index 0000000..c618283 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt$await$2$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.class +new file mode 100644 +index 0000000..efa937c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ListenableFuture_awaitKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/PhotoFileInfo.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/PhotoFileInfo.class +new file mode 100644 +index 0000000..9789f23 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/PhotoFileInfo.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.class +new file mode 100644 +index 0000000..0de7df4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/ResolutionSelector_forSizeKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.class +new file mode 100644 +index 0000000..f0233d2 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/Size_aspectRatioKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.class +new file mode 100644 +index 0000000..9c081eb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/StateError_toCameraErrorKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.class +new file mode 100644 +index 0000000..72990a5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/extensions/VideoRecordEvent_toCameraErrorKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.class +new file mode 100644 +index 0000000..d16f6f9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/AutoFocusSystem$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/AutoFocusSystem.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/AutoFocusSystem.class +new file mode 100644 +index 0000000..f6e81ad +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/AutoFocusSystem.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.class +new file mode 100644 +index 0000000..a77abad +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CameraDeviceFormat$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CameraDeviceFormat.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CameraDeviceFormat.class +new file mode 100644 +index 0000000..e72b3e5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CameraDeviceFormat.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.class +new file mode 100644 +index 0000000..8c1bbf1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeScannerOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeScannerOptions.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeScannerOptions.class +new file mode 100644 +index 0000000..71bb75d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeScannerOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType$Companion.class +new file mode 100644 +index 0000000..b2b9018 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType$WhenMappings.class +new file mode 100644 +index 0000000..2382145 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType.class +new file mode 100644 +index 0000000..77b4bf5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/CodeType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/DeviceType.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/DeviceType.class +new file mode 100644 +index 0000000..bc4bb14 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/DeviceType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash$Companion.class +new file mode 100644 +index 0000000..3c75436 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash$WhenMappings.class +new file mode 100644 +index 0000000..699450b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash.class +new file mode 100644 +index 0000000..a3e71fa +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Flash.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel$Companion.class +new file mode 100644 +index 0000000..1857b72 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.class +new file mode 100644 +index 0000000..d02417a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel.class +new file mode 100644 +index 0000000..e48495f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/HardwareLevel.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/JSUnionValue$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/JSUnionValue$Companion.class +new file mode 100644 +index 0000000..5ad4f98 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/JSUnionValue$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/JSUnionValue.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/JSUnionValue.class +new file mode 100644 +index 0000000..8ea2c17 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/JSUnionValue.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation$Companion.class +new file mode 100644 +index 0000000..73ac191 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation$WhenMappings.class +new file mode 100644 +index 0000000..9750b03 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation.class +new file mode 100644 +index 0000000..6985f49 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Orientation.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/OutputOrientation$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/OutputOrientation$Companion.class +new file mode 100644 +index 0000000..e850f70 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/OutputOrientation$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/OutputOrientation.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/OutputOrientation.class +new file mode 100644 +index 0000000..b74b018 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/OutputOrientation.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PermissionStatus$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PermissionStatus$Companion.class +new file mode 100644 +index 0000000..92105c5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PermissionStatus$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PermissionStatus.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PermissionStatus.class +new file mode 100644 +index 0000000..13499ab +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PermissionStatus.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat$Companion.class +new file mode 100644 +index 0000000..340fb1a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.class +new file mode 100644 +index 0000000..2f68922 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat.class +new file mode 100644 +index 0000000..6983c67 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PixelFormat.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Position$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Position$Companion.class +new file mode 100644 +index 0000000..58bde47 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Position$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Position.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Position.class +new file mode 100644 +index 0000000..bf019e0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Position.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType$Companion.class +new file mode 100644 +index 0000000..a33c4e1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.class +new file mode 100644 +index 0000000..fc78bdb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType.class +new file mode 100644 +index 0000000..36d435c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/PreviewViewType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance$Companion.class +new file mode 100644 +index 0000000..9fe6e1d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.class +new file mode 100644 +index 0000000..9858275 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance.class +new file mode 100644 +index 0000000..52894db +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/QualityBalance.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.class +new file mode 100644 +index 0000000..2f12f97 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/RecordVideoOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/RecordVideoOptions.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/RecordVideoOptions.class +new file mode 100644 +index 0000000..b2c8fbf +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/RecordVideoOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode$Companion.class +new file mode 100644 +index 0000000..17e5c0e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.class +new file mode 100644 +index 0000000..e38329e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode.class +new file mode 100644 +index 0000000..5d8f4b8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ResizeMode.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ShutterType.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ShutterType.class +new file mode 100644 +index 0000000..12938bb +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/ShutterType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.class +new file mode 100644 +index 0000000..d8c6638 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakePhotoOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakePhotoOptions.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakePhotoOptions.class +new file mode 100644 +index 0000000..3d09bc0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakePhotoOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.class +new file mode 100644 +index 0000000..7ae8ebc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakeSnapshotOptions$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakeSnapshotOptions.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakeSnapshotOptions.class +new file mode 100644 +index 0000000..c76b4c3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/TakeSnapshotOptions.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Torch$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Torch$Companion.class +new file mode 100644 +index 0000000..9e2124a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Torch$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Torch.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Torch.class +new file mode 100644 +index 0000000..9053a0c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Torch.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Video.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Video.class +new file mode 100644 +index 0000000..2825abe +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/Video.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec$Companion.class +new file mode 100644 +index 0000000..8befe6a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.class +new file mode 100644 +index 0000000..0ce637a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec.class +new file mode 100644 +index 0000000..200951e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoCodec.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType$Companion.class +new file mode 100644 +index 0000000..763d707 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.class +new file mode 100644 +index 0000000..0dce00d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType.class +new file mode 100644 +index 0000000..3f06559 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoFileType.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.class +new file mode 100644 +index 0000000..53a23ab +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.class +new file mode 100644 +index 0000000..ee7dc77 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode$WhenMappings.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode.class +new file mode 100644 +index 0000000..3d50c7b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/types/VideoStabilizationMode.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.class +new file mode 100644 +index 0000000..9e7cf8d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/CamcorderProfileUtils$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/CamcorderProfileUtils.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/CamcorderProfileUtils.class +new file mode 100644 +index 0000000..4d9e236 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/CamcorderProfileUtils.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/FileUtils$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/FileUtils$Companion.class +new file mode 100644 +index 0000000..d4f26d0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/FileUtils$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/FileUtils.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/FileUtils.class +new file mode 100644 +index 0000000..bc07632 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/FileUtils.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.class +new file mode 100644 +index 0000000..8a3b875 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/ImageFormatUtils$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/ImageFormatUtils.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/ImageFormatUtils.class +new file mode 100644 +index 0000000..b9091d8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/ImageFormatUtils.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/OutputFile.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/OutputFile.class +new file mode 100644 +index 0000000..e07296d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/OutputFile.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.class +new file mode 100644 +index 0000000..86929f3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThread$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.class +new file mode 100644 +index 0000000..2fee2e5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt$runOnUiThreadAndWait$2$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt.class +new file mode 100644 +index 0000000..132d7ba +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/core/utils/RunOnUiThreadKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.class +new file mode 100644 +index 0000000..a962d75 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/frameprocessors/VisionCameraProxy$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/frameprocessors/VisionCameraProxy.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/frameprocessors/VisionCameraProxy.class +new file mode 100644 +index 0000000..3511a99 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/frameprocessors/VisionCameraProxy.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.class +new file mode 100644 +index 0000000..56327de +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/AverageFpsChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/AverageFpsChangedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/AverageFpsChangedEvent.class +new file mode 100644 +index 0000000..6d0e6ba +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/AverageFpsChangedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.class +new file mode 100644 +index 0000000..0a47145 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraCodeScannedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraCodeScannedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraCodeScannedEvent.class +new file mode 100644 +index 0000000..83b9970 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraCodeScannedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$1.class +new file mode 100644 +index 0000000..8da0ac1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$Companion.class +new file mode 100644 +index 0000000..6014630 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$callback$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$callback$1.class +new file mode 100644 +index 0000000..b940104 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager$callback$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager.class +new file mode 100644 +index 0000000..bebcbe3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraDevicesManager.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraErrorEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraErrorEvent$Companion.class +new file mode 100644 +index 0000000..553af95 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraErrorEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraErrorEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraErrorEvent.class +new file mode 100644 +index 0000000..d001349 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraErrorEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraInitializedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraInitializedEvent$Companion.class +new file mode 100644 +index 0000000..4a9d587 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraInitializedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraInitializedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraInitializedEvent.class +new file mode 100644 +index 0000000..941e5b9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraInitializedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.class +new file mode 100644 +index 0000000..2dfc158 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.class +new file mode 100644 +index 0000000..c335ed9 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraOutputOrientationChangedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPackage.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPackage.class +new file mode 100644 +index 0000000..8f6faa3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPackage.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.class +new file mode 100644 +index 0000000..2f19f41 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.class +new file mode 100644 +index 0000000..0899b0a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewOrientationChangedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.class +new file mode 100644 +index 0000000..63b2f37 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStartedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStartedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStartedEvent.class +new file mode 100644 +index 0000000..5c6b0f7 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStartedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.class +new file mode 100644 +index 0000000..b912442 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStoppedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStoppedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStoppedEvent.class +new file mode 100644 +index 0000000..d354405 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraPreviewStoppedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraShutterEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraShutterEvent$Companion.class +new file mode 100644 +index 0000000..7d52b90 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraShutterEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraShutterEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraShutterEvent.class +new file mode 100644 +index 0000000..31912ea +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraShutterEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStartedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStartedEvent$Companion.class +new file mode 100644 +index 0000000..908fac6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStartedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStartedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStartedEvent.class +new file mode 100644 +index 0000000..a2df142 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStartedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStoppedEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStoppedEvent$Companion.class +new file mode 100644 +index 0000000..c07826b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStoppedEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStoppedEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStoppedEvent.class +new file mode 100644 +index 0000000..26f29f4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraStoppedEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$Companion.class +new file mode 100644 +index 0000000..a00f19a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.class +new file mode 100644 +index 0000000..753b2d3 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$sam$androidx_lifecycle_Observer$0.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$update$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$update$1.class +new file mode 100644 +index 0000000..e799d36 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$update$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$updatePreview$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$updatePreview$1.class +new file mode 100644 +index 0000000..2988ad4 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$updatePreview$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.class +new file mode 100644 +index 0000000..9a5d31f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView$updateZoomGesture$scaleGestureDetector$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView.class +new file mode 100644 +index 0000000..53bbcf0 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewManager$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewManager$Companion.class +new file mode 100644 +index 0000000..714127b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewManager$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewManager.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewManager.class +new file mode 100644 +index 0000000..33f613f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewManager.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$Companion.class +new file mode 100644 +index 0000000..79d516e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.class +new file mode 100644 +index 0000000..3bf0c52 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$cancelRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.class +new file mode 100644 +index 0000000..a812a0b +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$findCameraView$$inlined$runOnUiThreadAndWait$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$focus$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$focus$1.class +new file mode 100644 +index 0000000..9ed8296 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$focus$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.class +new file mode 100644 +index 0000000..92c67a1 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$pauseRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.class +new file mode 100644 +index 0000000..a786d1e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$resumeRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$startRecording$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$startRecording$1.class +new file mode 100644 +index 0000000..7483697 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$startRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.class +new file mode 100644 +index 0000000..555fe64 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$stopRecording$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.class +new file mode 100644 +index 0000000..b609100 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takePhoto$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.class +new file mode 100644 +index 0000000..8f3a14e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1$invokeSuspend$$inlined$runOnUiThread$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.class +new file mode 100644 +index 0000000..03808a6 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule$takeSnapshot$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule.class +new file mode 100644 +index 0000000..cbc1853 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewModule.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.class +new file mode 100644 +index 0000000..c14ea8e +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewReadyEvent$Companion.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewReadyEvent.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewReadyEvent.class +new file mode 100644 +index 0000000..86116d5 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraViewReadyEvent.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_EventsKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_EventsKt.class +new file mode 100644 +index 0000000..eef49fc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_EventsKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.class +new file mode 100644 +index 0000000..6ebb2ae +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt$focus$$inlined$runOnUiThreadAndWait$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.class +new file mode 100644 +index 0000000..78b7a34 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt$focus$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt.class +new file mode 100644 +index 0000000..11c270d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_FocusKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_RecordVideoKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_RecordVideoKt.class +new file mode 100644 +index 0000000..2c6301a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_RecordVideoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.class +new file mode 100644 +index 0000000..184e4be +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakePhotoKt$takePhoto$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakePhotoKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakePhotoKt.class +new file mode 100644 +index 0000000..d88d80c +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakePhotoKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.class +new file mode 100644 +index 0000000..5c0f6e8 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/CameraView_TakeSnapshotKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector$Callback.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector$Callback.class +new file mode 100644 +index 0000000..20ef5dc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector$Callback.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.class +new file mode 100644 +index 0000000..f6195dc +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector$start$$inlined$schedule$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector.class +new file mode 100644 +index 0000000..8e44306 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/FpsSampleCollector.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/List_toJSValueKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/List_toJSValueKt.class +new file mode 100644 +index 0000000..354133a +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/List_toJSValueKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.class +new file mode 100644 +index 0000000..7c2d99f +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt$installHierarchyFitter$1.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.class +new file mode 100644 +index 0000000..324cd53 +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/extensions/ViewGroup_installHierarchyFitterKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/utils/CallbackPromiseKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/utils/CallbackPromiseKt.class +new file mode 100644 +index 0000000..837dc0d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/utils/CallbackPromiseKt.class differ +diff --git a/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/utils/WithPromiseKt.class b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/utils/WithPromiseKt.class +new file mode 100644 +index 0000000..28c141d +Binary files /dev/null and b/node_modules/react-native-vision-camera/android/build/tmp/kotlin-classes/debug/com/mrousavy/camera/react/utils/WithPromiseKt.class differ diff --git a/packages/react-native-room-kit/example/src/screens/QRCode/index.tsx b/packages/react-native-room-kit/example/src/screens/QRCode/index.tsx index cc3aa8695..4e71e2579 100644 --- a/packages/react-native-room-kit/example/src/screens/QRCode/index.tsx +++ b/packages/react-native-room-kit/example/src/screens/QRCode/index.tsx @@ -121,10 +121,10 @@ const QRCode = () => { setJoiningLink(url); } }; - Linking.addEventListener('url', updateUrl); + const subscription = Linking.addEventListener('url', updateUrl); return () => { - Linking.removeEventListener('url', updateUrl); + subscription.remove(); }; }, []); diff --git a/packages/react-native-room-kit/example/src/screens/QRCodeScanner/index.tsx b/packages/react-native-room-kit/example/src/screens/QRCodeScanner/index.tsx index a6f620153..f3cc003fc 100644 --- a/packages/react-native-room-kit/example/src/screens/QRCodeScanner/index.tsx +++ b/packages/react-native-room-kit/example/src/screens/QRCodeScanner/index.tsx @@ -1,11 +1,14 @@ -import React from 'react'; -import { Alert, Text, TouchableOpacity, View } from 'react-native'; +import React, { useState } from 'react'; +import { Alert, Text, TouchableOpacity, View, StyleSheet } from 'react-native'; import { useIsFocused, useNavigation } from '@react-navigation/native'; import type { NativeStackNavigationProp } from '@react-navigation/native-stack'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import AsyncStorage from '@react-native-async-storage/async-storage'; -import { BarCodeReadEvent, RNCamera } from 'react-native-camera'; -import QRScanner from 'react-native-qrcode-scanner'; +import { + Camera, + useCameraDevice, + useCodeScanner, +} from 'react-native-vision-camera'; import { useDispatch, useSelector } from 'react-redux'; import Toast from 'react-native-simple-toast'; @@ -32,41 +35,66 @@ const QRCodeScanner = () => { (state: RootState) => state.app.joinConfig.staticUserId ); const isFocused = useIsFocused(); + const [hasPermission, setHasPermission] = useState(false); + const [isScanned, setIsScanned] = useState(false); - const onScanSuccess = (e: BarCodeReadEvent) => { - const joiningLink = e.data.replace('meeting', 'preview'); + const device = useCameraDevice('back'); - if (validateUrl(joiningLink) && joiningLink.includes('app.100ms.live/')) { - callService( - joiningLink, - ( - roomCode: string, - userId: string, - tokenEndpoint: string | undefined, - initEndpoint: string | undefined, - layoutEndPoint: string | undefined - ) => { - // Saving Meeting Link to Async Storage for persisting it between app starts. - AsyncStorage.setItem(Constants.MEET_URL, joiningLink); - // @ts-ignore - navigate('HMSPrebuiltScreen', { - roomCode, - userId: staticUserId ? Constants.STATIC_USERID : userId, - initEndPoint: initEndpoint, - tokenEndPoint: tokenEndpoint, - layoutEndPoint: layoutEndPoint, - debugMode, // default is false, will deal with this later - }); - }, - (errorMsg: string) => { - Toast.showWithGravity(errorMsg, Toast.LONG, Toast.TOP); + const codeScanner = useCodeScanner({ + codeTypes: ['qr'], + onCodeScanned: (codes) => { + if (isScanned || codes.length === 0) return; + + setIsScanned(true); + const qrData = codes[0]?.value; + + if (qrData) { + const joiningLink = qrData.replace('meeting', 'preview'); + + if ( + validateUrl(joiningLink) && + joiningLink.includes('app.100ms.live/') + ) { + callService( + joiningLink, + ( + roomCode: string, + userId: string, + tokenEndpoint: string | undefined, + initEndpoint: string | undefined, + layoutEndPoint: string | undefined + ) => { + // Saving Meeting Link to Async Storage for persisting it between app starts. + AsyncStorage.setItem(Constants.MEET_URL, joiningLink); + // @ts-ignore + navigate('HMSPrebuiltScreen', { + roomCode, + userId: staticUserId ? Constants.STATIC_USERID : userId, + initEndPoint: initEndpoint, + tokenEndPoint: tokenEndpoint, + layoutEndPoint: layoutEndPoint, + debugMode, + }); + }, + (errorMsg: string) => { + Toast.showWithGravity(errorMsg, Toast.LONG, Toast.TOP); + setIsScanned(false); + } + ); + } else { + goBack(); + Alert.alert('Error', 'Invalid URL'); } - ); - } else { - goBack(); - Alert.alert('Error', 'Invalid URL'); - } - }; + } + }, + }); + + React.useEffect(() => { + (async () => { + const status = await Camera.requestCameraPermission(); + setHasPermission(status === 'granted'); + })(); + }, []); return ( { Scan QR Code - {isFocused ? ( - ) : ( diff --git a/packages/react-native-room-kit/package-lock.json b/packages/react-native-room-kit/package-lock.json index acbb04c37..6fcaf977d 100644 --- a/packages/react-native-room-kit/package-lock.json +++ b/packages/react-native-room-kit/package-lock.json @@ -1,15 +1,15 @@ { "name": "@100mslive/react-native-room-kit", - "version": "1.2.3", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@100mslive/react-native-room-kit", - "version": "1.2.3", + "version": "1.3.0", "license": "MIT", "dependencies": { - "@100mslive/types-prebuilt": "^0.12.11", + "@100mslive/types-prebuilt": "^0.12.12", "@react-navigation/native": "^6.0.8", "react-redux": "^7.2.4", "redux": "^4.1.0" @@ -32,7 +32,7 @@ "pod-install": "^0.1.0", "prettier": "^2.0.5", "react": "18.2.0", - "react-native": "0.71.19", + "react-native": "0.73.11", "react-native-builder-bob": "^0.21.2", "react-native-image-picker": "^7.1.2", "release-it": "^15.0.0", @@ -43,19 +43,19 @@ }, "peerDependencies": { "@100mslive/react-native-hms": "1.11.0", - "@react-native-community/blur": "^4.3.2", - "@react-native-masked-view/masked-view": "^0.2.9", - "@shopify/flash-list": "^1.4.3", - "lottie-react-native": "5.1.6", + "@react-native-community/blur": "^4.4.0", + "@react-native-masked-view/masked-view": "^0.3.0", + "@shopify/flash-list": "^1.7.0", + "lottie-react-native": ">=7.0.0", "react": "*", - "react-native": "*", - "react-native-gesture-handler": "~2.15.0", - "react-native-linear-gradient": "^2.7.3", + "react-native": ">=0.77.3", + "react-native-gesture-handler": ">=2.22.0", + "react-native-linear-gradient": "^2.8.0", "react-native-modal": "^13.0.1", - "react-native-reanimated": ">=2.17.0", - "react-native-safe-area-context": "^3.3.0", + "react-native-reanimated": ">=3.0.0", + "react-native-safe-area-context": "^5.0.0", "react-native-simple-toast": "^1.1.3", - "react-native-webview": "^13.8.7" + "react-native-webview": "^13.12.0" } }, "node_modules/@100mslive/react-native-hms": { @@ -83,9 +83,9 @@ } }, "node_modules/@100mslive/types-prebuilt": { - "version": "0.12.11", - "resolved": "https://registry.npmjs.org/@100mslive/types-prebuilt/-/types-prebuilt-0.12.11.tgz", - "integrity": "sha512-jJUpizFfuDiK2PbQPyD545obyNQjTapE8fVp50lklTDZvcs8JZPOvXBMxUR0fwf2rfPPhcStctxaRcvUW1N8IA==" + "version": "0.12.12", + "resolved": "https://registry.npmjs.org/@100mslive/types-prebuilt/-/types-prebuilt-0.12.12.tgz", + "integrity": "sha512-teywGXsHxuOFaA2pS/z0+wHZfaDzSJSp0hppwtAhW9LW1W+tvz2tJBp5NAZiB7l+iHUR88FnwRhD5WG7G64Rnw==" }, "node_modules/@ampproject/remapping": { "version": "2.3.0", @@ -100,21 +100,22 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz", - "integrity": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", "engines": { "node": ">=6.9.0" } @@ -167,14 +168,15 @@ } }, "node_modules/@babel/generator": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz", - "integrity": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "dependencies": { - "@babel/types": "^7.25.0", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" @@ -204,13 +206,13 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", - "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", "dependencies": { - "@babel/compat-data": "^7.25.2", - "@babel/helper-validator-option": "^7.24.8", - "browserslist": "^4.23.1", + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -255,32 +257,56 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz", + "integrity": "sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==", "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "debug": "^4.4.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "resolve": "^1.22.10" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, "node_modules/@babel/helper-define-polyfill-provider/node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -296,6 +322,14 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.24.8", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", @@ -309,12 +343,12 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -349,9 +383,9 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", - "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", "engines": { "node": ">=6.9.0" } @@ -413,25 +447,25 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", - "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.24.8", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", - "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "engines": { "node": ">=6.9.0" } @@ -450,37 +484,23 @@ } }, "node_modules/@babel/helpers": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", - "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", - "dependencies": { - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz", - "integrity": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "dependencies": { - "@babel/types": "^7.25.2" + "@babel/types": "^7.28.5" }, "bin": { "parser": "bin/babel-parser.js" @@ -598,12 +618,11 @@ } }, "node_modules/@babel/plugin-proposal-export-default-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.24.7.tgz", - "integrity": "sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.27.1.tgz", + "integrity": "sha512-hjlsMBl1aJc5lp8MoCDEZCiYzlgdRAShOjAfRw6X+GlpLpUPU7c3XNLsKFZbQk/1cRzBlJ7CXg3xJAJMrFa1Uw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-default-from": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -628,6 +647,22 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.20.7", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", @@ -751,11 +786,11 @@ } }, "node_modules/@babel/plugin-syntax-export-default-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.24.7.tgz", - "integrity": "sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.27.1.tgz", + "integrity": "sha512-eBC/3KSekshx19+N40MzjWqJd7KTEdOoLesAfa4IDFI8eRz5a47i5Oszus6zG/cwIXN63YhgLOMSSNJx49sENg==", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1616,11 +1651,11 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", - "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1630,11 +1665,11 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", - "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1689,15 +1724,15 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", - "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", - "dependencies": { - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.1", - "babel-plugin-polyfill-regenerator": "^0.6.1", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.5.tgz", + "integrity": "sha512-20NUVgOrinudkIBzQ2bNxP08YpKprUkRTiRSd2/Z5GOdPImJGkoN4Z7IQe1T5AdyKI1i5L6RBmluqdSzvaq9/w==", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", "semver": "^6.3.1" }, "engines": { @@ -1707,6 +1742,18 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-runtime/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", @@ -2019,9 +2066,9 @@ } }, "node_modules/@babel/register": { - "version": "7.24.6", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz", - "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.28.3.tgz", + "integrity": "sha512-CieDOtd8u208eI49bYl4z1J22ySFw87IGwE+IswFEExH7e3rLgKb0WNQeumnacQ1+VoDJLYI5QFA3AJZuyZQfA==", "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", @@ -2079,54 +2126,50 @@ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" }, "node_modules/@babel/runtime": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", - "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.25.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", - "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.25.0", - "@babel/types": "^7.25.0" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.25.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz", - "integrity": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.25.0", - "@babel/parser": "^7.25.3", - "@babel/template": "^7.25.0", - "@babel/types": "^7.25.2", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.25.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz", - "integrity": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "dependencies": { - "@babel/helper-string-parser": "^7.24.8", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -2226,76 +2269,6 @@ "node": ">=v14" } }, - "node_modules/@commitlint/format/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@commitlint/format/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@commitlint/format/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@commitlint/format/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@commitlint/format/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@commitlint/format/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@commitlint/is-ignored": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.8.1.tgz", @@ -2382,76 +2355,6 @@ "node": ">=v14" } }, - "node_modules/@commitlint/load/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@commitlint/load/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@commitlint/load/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@commitlint/load/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@commitlint/load/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@commitlint/load/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@commitlint/message": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.8.1.tgz", @@ -2557,92 +2460,22 @@ "node": ">=v14" } }, - "node_modules/@commitlint/types/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@jridgewell/trace-mapping": "0.3.9" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=12" } }, - "node_modules/@commitlint/types/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@commitlint/types/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@commitlint/types/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@commitlint/types/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@commitlint/types/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", @@ -2861,6 +2694,14 @@ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==", "dev": true }, + "node_modules/@isaacs/ttlcache": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@isaacs/ttlcache/-/ttlcache-1.4.1.tgz", + "integrity": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==", + "engines": { + "node": ">=12" + } + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -2983,64 +2824,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/console/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/console/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -3050,18 +2833,6 @@ "node": ">=8" } }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/core": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/@jest/core/-/core-28.1.3.tgz", @@ -3110,64 +2881,6 @@ } } }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/core/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/core/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -3177,18 +2890,6 @@ "node": ">=8" } }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/create-cache-key-function": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/create-cache-key-function/-/create-cache-key-function-29.7.0.tgz", @@ -3232,70 +2933,6 @@ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" }, - "node_modules/@jest/create-cache-key-function/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/create-cache-key-function/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/create-cache-key-function/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/create-cache-key-function/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@jest/create-cache-key-function/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/create-cache-key-function/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/environment": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-28.1.3.tgz", @@ -3411,81 +3048,11 @@ } } }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@jest/reporters/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/reporters/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/reporters/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=8" } @@ -3581,70 +3148,12 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/@jest/transform/node_modules/convert-source-map": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, - "node_modules/@jest/transform/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/transform/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -3654,18 +3163,6 @@ "node": ">=8" } }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/types": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", @@ -3683,87 +3180,13 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/@jest/types/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { @@ -3774,18 +3197,10 @@ "node": ">=6.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" @@ -3797,9 +3212,9 @@ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -4090,312 +3505,79 @@ } }, "node_modules/@react-native-community/cli": { - "version": "10.2.7", - "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-10.2.7.tgz", - "integrity": "sha512-31GrAP5PjHosXV5bkHWVnYGjAeka2gkTTsPqasJAki5RI1njB1a2WAkYFV0sn+gqc4RU1s96RELBBfT+EGzhAQ==", - "dependencies": { - "@react-native-community/cli-clean": "^10.1.1", - "@react-native-community/cli-config": "^10.1.1", - "@react-native-community/cli-debugger-ui": "^10.0.0", - "@react-native-community/cli-doctor": "^10.2.7", - "@react-native-community/cli-hermes": "^10.2.7", - "@react-native-community/cli-plugin-metro": "^10.2.3", - "@react-native-community/cli-server-api": "^10.1.1", - "@react-native-community/cli-tools": "^10.1.1", - "@react-native-community/cli-types": "^10.0.0", + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli/-/cli-12.3.7.tgz", + "integrity": "sha512-7+mOhk+3+X3BjSJZZvYrDJynA00gPYTlvT28ZjiLlbuVGfqfNiBKaxuF7rty+gjjpch4iKGvLhIhSN5cuOsdHQ==", + "dependencies": { + "@react-native-community/cli-clean": "12.3.7", + "@react-native-community/cli-config": "12.3.7", + "@react-native-community/cli-debugger-ui": "12.3.7", + "@react-native-community/cli-doctor": "12.3.7", + "@react-native-community/cli-hermes": "12.3.7", + "@react-native-community/cli-plugin-metro": "12.3.7", + "@react-native-community/cli-server-api": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "@react-native-community/cli-types": "12.3.7", "chalk": "^4.1.2", "commander": "^9.4.1", - "execa": "^1.0.0", + "deepmerge": "^4.3.0", + "execa": "^5.0.0", "find-up": "^4.1.0", "fs-extra": "^8.1.0", "graceful-fs": "^4.1.3", - "prompts": "^2.4.0", - "semver": "^6.3.0" + "prompts": "^2.4.2", + "semver": "^7.5.2" }, "bin": { "react-native": "build/bin.js" }, "engines": { - "node": ">=14" + "node": ">=18" } }, "node_modules/@react-native-community/cli-clean": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-10.1.1.tgz", - "integrity": "sha512-iNsrjzjIRv9yb5y309SWJ8NDHdwYtnCpmxZouQDyOljUdC9MwdZ4ChbtA4rwQyAwgOVfS9F/j56ML3Cslmvrxg==", + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-clean/-/cli-clean-12.3.7.tgz", + "integrity": "sha512-BCYW77QqyxfhiMEBOoHyciJRNV6Rhz1RvclReIKnCA9wAwmoJBeu4Mu+AwiECA2bUITX16fvPt3NwDsSd1jwfQ==", "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", + "@react-native-community/cli-tools": "12.3.7", "chalk": "^4.1.2", - "execa": "^1.0.0", - "prompts": "^2.4.0" + "execa": "^5.0.0" } }, - "node_modules/@react-native-community/cli-clean/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@react-native-community/cli-config": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-12.3.7.tgz", + "integrity": "sha512-IU2UhO9yj1rEBNhHWGzIXpPDzha4hizLP/PUOrhR4BUf6RVPUWEp+e1PXNGR0qjIf6esu7OC7t6mLOhH0NUJEw==", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "cosmiconfig": "^5.1.0", + "deepmerge": "^4.3.0", + "glob": "^7.1.3", + "joi": "^17.2.1" } }, - "node_modules/@react-native-community/cli-clean/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@react-native-community/cli-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "sprintf-js": "~1.0.2" } }, - "node_modules/@react-native-community/cli-clean/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@react-native-community/cli-config/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", "dependencies": { - "color-name": "~1.1.4" + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-clean/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-clean/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-config": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-config/-/cli-config-10.1.1.tgz", - "integrity": "sha512-p4mHrjC+s/ayiNVG6T35GdEGdP6TuyBUg5plVGRJfTl8WT6LBfLYLk+fz/iETrEZ/YkhQIsQcEUQC47MqLNHog==", - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "cosmiconfig": "^5.1.0", - "deepmerge": "^3.2.0", - "glob": "^7.1.3", - "joi": "^17.2.1" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-config/node_modules/cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/deepmerge": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz", - "integrity": "sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" + "node": ">=4" } }, "node_modules/@react-native-community/cli-config/node_modules/import-fresh": { @@ -4447,45 +3629,35 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, - "node_modules/@react-native-community/cli-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@react-native-community/cli-debugger-ui": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-10.0.0.tgz", - "integrity": "sha512-8UKLcvpSNxnUTRy8CkCl27GGLqZunQ9ncGYhSrWyKrU9SWBJJGeZwi2k2KaoJi5FvF2+cD0t8z8cU6lsq2ZZmA==", + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-12.3.7.tgz", + "integrity": "sha512-UHUFrRdcjWSCdWG9KIp2QjuRIahBQnb9epnQI7JCq6NFbFHYfEI4rI7msjMn+gG8/tSwKTV2PTPuPmZ5wWlE7Q==", "dependencies": { "serve-static": "^1.13.1" } }, "node_modules/@react-native-community/cli-doctor": { - "version": "10.2.7", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-10.2.7.tgz", - "integrity": "sha512-MejE7m+63DxfKwFSvyZGfq+72jX0RSP9SdSmDbW0Bjz2NIEE3BsE8rNay+ByFbdSLsapRPvaZv2Jof+dK2Y/yg==", - "dependencies": { - "@react-native-community/cli-config": "^10.1.1", - "@react-native-community/cli-platform-ios": "^10.2.5", - "@react-native-community/cli-tools": "^10.1.1", + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-doctor/-/cli-doctor-12.3.7.tgz", + "integrity": "sha512-gCamZztRoAyhciuQPqdz4Xe4t3gOdNsaADNd+rva+Rx8W2PoPeNv60i7/et06wlsn6B6Sh0/hMiAftJbiHDFkg==", + "dependencies": { + "@react-native-community/cli-config": "12.3.7", + "@react-native-community/cli-platform-android": "12.3.7", + "@react-native-community/cli-platform-ios": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", "chalk": "^4.1.2", "command-exists": "^1.2.8", - "envinfo": "^7.7.2", - "execa": "^1.0.0", + "deepmerge": "^4.3.0", + "envinfo": "^7.10.0", + "execa": "^5.0.0", "hermes-profile-transformer": "^0.0.6", "node-stream-zip": "^1.9.1", "ora": "^5.4.1", - "prompts": "^2.4.0", - "semver": "^6.3.0", + "semver": "^7.5.2", "strip-ansi": "^5.2.0", - "sudo-prompt": "^9.0.0", - "wcwidth": "^1.0.1" + "wcwidth": "^1.0.1", + "yaml": "^2.2.1" } }, "node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex": { @@ -4496,1136 +3668,193 @@ "node": ">=6" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" + "node_modules/@react-native-community/cli-doctor/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=10" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "ansi-regex": "^4.1.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" + "node_modules/@react-native-community/cli-doctor/node_modules/yaml": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz", + "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==", + "bin": { + "yaml": "bin.mjs" }, "engines": { - "node": ">=7.0.0" + "node": ">= 14.6" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-doctor/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/@react-native-community/cli-hermes": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-12.3.7.tgz", + "integrity": "sha512-ezzeiSKjRXK2+i1AAe7NhhN9CEHrgtRmTn2MAdBpE++N8fH5EQZgxFcGgGdwGvns2fm9ivyyeVnI5eAYwvM+jg==", "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" + "@react-native-community/cli-platform-android": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "hermes-profile-transformer": "^0.0.6" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" + "node_modules/@react-native-community/cli-platform-android": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-12.3.7.tgz", + "integrity": "sha512-mOltF3cpjNdJb3WSFwEHc1GH4ibCcnOvQ34OdWyblKy9ijuvG5SjNTlYR/UW/CURaDi3OUKAhxQMTY5d27bzGQ==", + "dependencies": { + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-xml-parser": "^4.2.4", + "glob": "^7.1.3", + "logkitty": "^0.7.1" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "node_modules/@react-native-community/cli-platform-ios": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-12.3.7.tgz", + "integrity": "sha512-2WnVsMH4ORZIhBm/5nCms1NeeKG4KarNC7PMLmrXWXB/bibDcaNsjrJiqnmCUcpTEvTQTokRfoO7Aj6NM0Cqow==", "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" + "@react-native-community/cli-tools": "12.3.7", + "chalk": "^4.1.2", + "execa": "^5.0.0", + "fast-xml-parser": "^4.0.12", + "glob": "^7.1.3", + "ora": "^5.4.1" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "node_modules/@react-native-community/cli-plugin-metro": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-12.3.7.tgz", + "integrity": "sha512-ahEw0Vfnv2Nv/jdZ2QDuGjQ9l2SczO4lXjb3ubu5vEYNLyTw3jYsLMK6iES7YQ/ApQmKdG476HU1O9uZdpaYPg==" + }, + "node_modules/@react-native-community/cli-server-api": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-12.3.7.tgz", + "integrity": "sha512-LYETs3CCjrLn1ZU0kYv44TywiIl5IPFHZGeXhAh2TtgOk4mo3kvXxECDil9CdO3bmDra6qyiG61KHvzr8IrHdg==", "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" + "@react-native-community/cli-debugger-ui": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "compression": "^1.7.1", + "connect": "^3.6.5", + "errorhandler": "^1.5.1", + "nocache": "^3.0.1", + "pretty-format": "^26.6.2", + "serve-static": "^1.13.1", + "ws": "^7.5.1" } }, - "node_modules/@react-native-community/cli-doctor/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dependencies": { - "ansi-regex": "^4.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-doctor/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-hermes": { - "version": "10.2.7", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-hermes/-/cli-hermes-10.2.7.tgz", - "integrity": "sha512-MULfkgeLx1fietx10pLFLmlfRh0dcfX/HABXB5Tm0BzQDXy7ofFIJ/UxH+IF55NwPKXl6aEpTbPwbgsyJxqPiA==", - "dependencies": { - "@react-native-community/cli-platform-android": "^10.2.0", - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "hermes-profile-transformer": "^0.0.6" - } - }, - "node_modules/@react-native-community/cli-hermes/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-hermes/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-hermes/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-hermes/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-hermes/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-hermes/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-android": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-10.2.0.tgz", - "integrity": "sha512-CBenYwGxwFdObZTn1lgxWtMGA5ms2G/ALQhkS+XTAD7KHDrCxFF9yT/fnAjFZKM6vX/1TqGI1RflruXih3kAhw==", - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "glob": "^7.1.3", - "logkitty": "^0.7.1" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-android/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-platform-ios": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-platform-ios/-/cli-platform-ios-10.2.5.tgz", - "integrity": "sha512-hq+FZZuSBK9z82GLQfzdNDl8vbFx5UlwCLFCuTtNCROgBoapFtVZQKRP2QBftYNrQZ0dLAb01gkwxagHsQCFyg==", - "dependencies": { - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "fast-xml-parser": "^4.0.12", - "glob": "^7.1.3", - "ora": "^5.4.1" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-platform-ios/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-plugin-metro": { - "version": "10.2.3", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-10.2.3.tgz", - "integrity": "sha512-jHi2oDuTePmW4NEyVT8JEGNlIYcnFXCSV2ZMp4rnDrUk4TzzyvS3IMvDlESEmG8Kry8rvP0KSUx/hTpy37Sbkw==", - "dependencies": { - "@react-native-community/cli-server-api": "^10.1.1", - "@react-native-community/cli-tools": "^10.1.1", - "chalk": "^4.1.2", - "execa": "^1.0.0", - "metro": "0.73.10", - "metro-config": "0.73.10", - "metro-core": "0.73.10", - "metro-react-native-babel-transformer": "0.73.10", - "metro-resolver": "0.73.10", - "metro-runtime": "0.73.10", - "readline": "^1.3.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-plugin-metro/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/@react-native-community/cli-server-api": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-10.1.1.tgz", - "integrity": "sha512-NZDo/wh4zlm8as31UEBno2bui8+ufzsZV+KN7QjEJWEM0levzBtxaD+4je0OpfhRIIkhaRm2gl/vVf7OYAzg4g==", - "dependencies": { - "@react-native-community/cli-debugger-ui": "^10.0.0", - "@react-native-community/cli-tools": "^10.1.1", - "compression": "^1.7.1", - "connect": "^3.6.5", - "errorhandler": "^1.5.0", - "nocache": "^3.0.1", - "pretty-format": "^26.6.2", - "serve-static": "^1.13.1", - "ws": "^7.5.1" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/@types/yargs": { - "version": "15.0.19", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", - "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-server-api/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "dependencies": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/@react-native-community/cli-server-api/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-server-api/node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/@react-native-community/cli-tools": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-10.1.1.tgz", - "integrity": "sha512-+FlwOnZBV+ailEzXjcD8afY2ogFEBeHOw/8+XXzMgPaquU2Zly9B+8W089tnnohO3yfiQiZqkQlElP423MY74g==", - "dependencies": { - "appdirsjs": "^1.2.4", - "chalk": "^4.1.2", - "find-up": "^5.0.0", - "mime": "^2.4.1", - "node-fetch": "^2.6.0", - "open": "^6.2.0", - "ora": "^5.4.1", - "semver": "^6.3.0", - "shell-quote": "^1.7.3" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli-tools/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli-tools/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@react-native-community/cli-server-api/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", "dependencies": { - "has-flag": "^4.0.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">= 10.14.2" } }, - "node_modules/@react-native-community/cli-types": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-10.0.0.tgz", - "integrity": "sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==", + "node_modules/@react-native-community/cli-server-api/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", "dependencies": { - "joi": "^17.2.1" + "@types/yargs-parser": "*" } }, - "node_modules/@react-native-community/cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@react-native-community/cli-server-api/node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", "dependencies": { - "color-convert": "^2.0.1" + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 10" } }, - "node_modules/@react-native-community/cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/@react-native-community/cli-server-api/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/@react-native-community/cli-server-api/node_modules/ws": { + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "engines": { - "node": ">=10" + "node": ">=8.3.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@react-native-community/cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" }, - "engines": { - "node": ">=7.0.0" + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/@react-native-community/cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@react-native-community/cli/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "node_modules/@react-native-community/cli-tools": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-12.3.7.tgz", + "integrity": "sha512-7NL/1/i+wzd4fBr/FSr3ypR05tiU/Kv9l/M1sL1c6jfcDtWXAL90R161gQkQFK7shIQ8Idp0dQX1rq49tSyfQw==", "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" + "appdirsjs": "^1.2.4", + "chalk": "^4.1.2", + "find-up": "^5.0.0", + "mime": "^2.4.1", + "node-fetch": "^2.6.0", + "open": "^6.2.0", + "ora": "^5.4.1", + "semver": "^7.5.2", + "shell-quote": "^1.7.3", + "sudo-prompt": "^9.0.0" } }, - "node_modules/@react-native-community/cli/node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "node_modules/@react-native-community/cli-tools/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "bin": { - "semver": "bin/semver" + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@react-native-community/cli/node_modules/execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "node_modules/@react-native-community/cli-types": { + "version": "12.3.7", + "resolved": "https://registry.npmjs.org/@react-native-community/cli-types/-/cli-types-12.3.7.tgz", + "integrity": "sha512-NFtUMyIrNfi3A5C1cjVKDVvYHvvOF7MnOMwdD8jm2NQKewQJrehKBh1eMuykKdqhWyZmuemD4KKhL8f4FxgG0w==", "dependencies": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=6" + "joi": "^17.2.1" } }, "node_modules/@react-native-community/cli/node_modules/find-up": { @@ -5653,33 +3882,6 @@ "node": ">=6 <7 || >=8" } }, - "node_modules/@react-native-community/cli/node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@react-native-community/cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@react-native-community/cli/node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@react-native-community/cli/node_modules/jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", @@ -5699,17 +3901,6 @@ "node": ">=8" } }, - "node_modules/@react-native-community/cli/node_modules/npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "dependencies": { - "path-key": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/@react-native-community/cli/node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", @@ -5729,125 +3920,312 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dependencies": { - "p-limit": "^2.2.0" + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@react-native-community/cli/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@react-native-community/cli/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@react-native-community/eslint-config": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@react-native-community/eslint-config/-/eslint-config-3.2.0.tgz", + "integrity": "sha512-ZjGvoeiBtCbd506hQqwjKmkWPgynGUoJspG8/MuV/EfKnkjCtBmeJvq2n+sWbWEvL9LWXDp2GJmPzmvU5RSvKQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.14.0", + "@babel/eslint-parser": "^7.18.2", + "@react-native-community/eslint-plugin": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.30.5", + "@typescript-eslint/parser": "^5.30.5", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-eslint-comments": "^3.2.0", + "eslint-plugin-ft-flow": "^2.0.1", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-native": "^4.0.0" + }, + "peerDependencies": { + "eslint": ">=8", + "prettier": ">=2" + } + }, + "node_modules/@react-native-community/eslint-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz", + "integrity": "sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==", + "dev": true + }, + "node_modules/@react-native-masked-view/masked-view": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@react-native-masked-view/masked-view/-/masked-view-0.3.2.tgz", + "integrity": "sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ==", + "license": "MIT", + "peer": true, + "peerDependencies": { + "react": ">=16", + "react-native": ">=0.57" + } + }, + "node_modules/@react-native/assets-registry": { + "version": "0.73.1", + "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.73.1.tgz", + "integrity": "sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==", + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-plugin-codegen": { + "version": "0.73.4", + "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.73.4.tgz", + "integrity": "sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==", + "dependencies": { + "@react-native/codegen": "0.73.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@react-native/babel-preset": { + "version": "0.73.21", + "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.73.21.tgz", + "integrity": "sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==", + "dependencies": { + "@babel/core": "^7.20.0", + "@babel/plugin-proposal-async-generator-functions": "^7.0.0", + "@babel/plugin-proposal-class-properties": "^7.18.0", + "@babel/plugin-proposal-export-default-from": "^7.0.0", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.0", + "@babel/plugin-proposal-numeric-separator": "^7.0.0", + "@babel/plugin-proposal-object-rest-spread": "^7.20.0", + "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", + "@babel/plugin-proposal-optional-chaining": "^7.20.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-default-from": "^7.0.0", + "@babel/plugin-syntax-flow": "^7.18.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", + "@babel/plugin-syntax-optional-chaining": "^7.0.0", + "@babel/plugin-transform-arrow-functions": "^7.0.0", + "@babel/plugin-transform-async-to-generator": "^7.20.0", + "@babel/plugin-transform-block-scoping": "^7.0.0", + "@babel/plugin-transform-classes": "^7.0.0", + "@babel/plugin-transform-computed-properties": "^7.0.0", + "@babel/plugin-transform-destructuring": "^7.20.0", + "@babel/plugin-transform-flow-strip-types": "^7.20.0", + "@babel/plugin-transform-function-name": "^7.0.0", + "@babel/plugin-transform-literals": "^7.0.0", + "@babel/plugin-transform-modules-commonjs": "^7.0.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", + "@babel/plugin-transform-parameters": "^7.0.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.11", + "@babel/plugin-transform-react-display-name": "^7.0.0", + "@babel/plugin-transform-react-jsx": "^7.0.0", + "@babel/plugin-transform-react-jsx-self": "^7.0.0", + "@babel/plugin-transform-react-jsx-source": "^7.0.0", + "@babel/plugin-transform-runtime": "^7.0.0", + "@babel/plugin-transform-shorthand-properties": "^7.0.0", + "@babel/plugin-transform-spread": "^7.0.0", + "@babel/plugin-transform-sticky-regex": "^7.0.0", + "@babel/plugin-transform-typescript": "^7.5.0", + "@babel/plugin-transform-unicode-regex": "^7.0.0", + "@babel/template": "^7.0.0", + "@react-native/babel-plugin-codegen": "0.73.4", + "babel-plugin-transform-flow-enums": "^0.0.2", + "react-refresh": "^0.14.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/core": "*" + } + }, + "node_modules/@react-native/codegen": { + "version": "0.73.3", + "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.73.3.tgz", + "integrity": "sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==", + "dependencies": { + "@babel/parser": "^7.20.0", + "flow-parser": "^0.206.0", + "glob": "^7.1.1", + "invariant": "^2.2.4", + "jscodeshift": "^0.14.0", + "mkdirp": "^0.5.1", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + } + }, + "node_modules/@react-native/community-cli-plugin": { + "version": "0.73.18", + "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.73.18.tgz", + "integrity": "sha512-RN8piDh/eF+QT6YYmrj3Zd9uiaDsRY/kMT0FYR42j8/M/boE4hs4Xn0u91XzT8CAkU9q/ilyo3wJsXIJo2teww==", + "dependencies": { + "@react-native-community/cli-server-api": "12.3.7", + "@react-native-community/cli-tools": "12.3.7", + "@react-native/dev-middleware": "0.73.8", + "@react-native/metro-babel-transformer": "0.73.15", + "chalk": "^4.0.0", + "execa": "^5.1.1", + "metro": "^0.80.3", + "metro-config": "^0.80.3", + "metro-core": "^0.80.3", + "node-fetch": "^2.2.0", + "readline": "^1.3.0" }, "engines": { - "node": ">=8" + "node": ">=18" } }, - "node_modules/@react-native-community/cli/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "node_modules/@react-native/debugger-frontend": { + "version": "0.73.3", + "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.73.3.tgz", + "integrity": "sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==", "engines": { - "node": ">=4" + "node": ">=18" } }, - "node_modules/@react-native-community/cli/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "node_modules/@react-native/dev-middleware": { + "version": "0.73.8", + "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.73.8.tgz", + "integrity": "sha512-oph4NamCIxkMfUL/fYtSsE+JbGOnrlawfQ0kKtDQ5xbOjPKotKoXqrs1eGwozNKv7FfQ393stk1by9a6DyASSg==", "dependencies": { - "shebang-regex": "^1.0.0" + "@isaacs/ttlcache": "^1.4.1", + "@react-native/debugger-frontend": "0.73.3", + "chrome-launcher": "^0.15.2", + "chromium-edge-launcher": "^1.0.0", + "connect": "^3.6.5", + "debug": "^2.2.0", + "node-fetch": "^2.2.0", + "open": "^7.0.3", + "serve-static": "^1.13.1", + "temp-dir": "^2.0.0", + "ws": "^6.2.2" }, "engines": { - "node": ">=0.10.0" + "node": ">=18" } }, - "node_modules/@react-native-community/cli/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/@react-native/dev-middleware/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/@react-native/dev-middleware/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@react-native/dev-middleware/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/@react-native/dev-middleware/node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", "dependencies": { - "has-flag": "^4.0.0" + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@react-native-community/cli/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/@react-native/gradle-plugin": { + "version": "0.73.5", + "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.73.5.tgz", + "integrity": "sha512-Orrn8J/kqzEuXudl96XcZk84ZcdIpn1ojjwGSuaSQSXNcCYbOXyt0RwtW5kjCqjgSzGnOMsJNZc5FDXHVq/WzA==", "engines": { - "node": ">= 4.0.0" + "node": ">=18" } }, - "node_modules/@react-native-community/cli/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "node_modules/@react-native/js-polyfills": { + "version": "0.73.1", + "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.73.1.tgz", + "integrity": "sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==", + "engines": { + "node": ">=18" } }, - "node_modules/@react-native-community/eslint-config": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@react-native-community/eslint-config/-/eslint-config-3.2.0.tgz", - "integrity": "sha512-ZjGvoeiBtCbd506hQqwjKmkWPgynGUoJspG8/MuV/EfKnkjCtBmeJvq2n+sWbWEvL9LWXDp2GJmPzmvU5RSvKQ==", - "dev": true, + "node_modules/@react-native/metro-babel-transformer": { + "version": "0.73.15", + "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.73.15.tgz", + "integrity": "sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw==", "dependencies": { - "@babel/core": "^7.14.0", - "@babel/eslint-parser": "^7.18.2", - "@react-native-community/eslint-plugin": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^5.30.5", - "@typescript-eslint/parser": "^5.30.5", - "eslint-config-prettier": "^8.5.0", - "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-ft-flow": "^2.0.1", - "eslint-plugin-jest": "^26.5.3", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-react": "^7.30.1", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-native": "^4.0.0" + "@babel/core": "^7.20.0", + "@react-native/babel-preset": "0.73.21", + "hermes-parser": "0.15.0", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" }, "peerDependencies": { - "eslint": ">=8", - "prettier": ">=2" + "@babel/core": "*" } }, - "node_modules/@react-native-community/eslint-plugin": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz", - "integrity": "sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==", - "dev": true + "node_modules/@react-native/normalize-colors": { + "version": "0.73.2", + "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.73.2.tgz", + "integrity": "sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==" }, - "node_modules/@react-native-masked-view/masked-view": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/@react-native-masked-view/masked-view/-/masked-view-0.2.9.tgz", - "integrity": "sha512-Hs4vKBKj+15VxHZHFtMaFWSBxXoOE5Ea8saoigWhahp8Mepssm0ezU+2pTl7DK9z8Y9s5uOl/aPb4QmBZ3R3Zw==", - "peer": true, + "node_modules/@react-native/virtualized-lists": { + "version": "0.73.4", + "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.73.4.tgz", + "integrity": "sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==", + "dependencies": { + "invariant": "^2.2.4", + "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + }, "peerDependencies": { - "react": ">=16", - "react-native": ">=0.57" + "react-native": "*" } }, - "node_modules/@react-native/assets": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@react-native/assets/-/assets-1.0.0.tgz", - "integrity": "sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==" - }, - "node_modules/@react-native/normalize-color": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@react-native/normalize-color/-/normalize-color-2.1.0.tgz", - "integrity": "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==" - }, - "node_modules/@react-native/polyfills": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@react-native/polyfills/-/polyfills-2.0.0.tgz", - "integrity": "sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==" - }, "node_modules/@react-navigation/core": { "version": "6.4.17", "resolved": "https://registry.npmjs.org/@react-navigation/core/-/core-6.4.17.tgz", @@ -6497,11 +4875,6 @@ "node": ">=6.5" } }, - "node_modules/absolute-path": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz", - "integrity": "sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==" - }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", @@ -6514,10 +4887,18 @@ "node": ">= 0.6" } }, + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "bin": { "acorn": "bin/acorn" }, @@ -6535,9 +4916,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.3.3", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", - "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", "dev": true, "dependencies": { "acorn": "^8.11.0" @@ -6663,14 +5044,17 @@ } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { @@ -6900,11 +5284,6 @@ "node": ">=4" } }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - }, "node_modules/async-limiter": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", @@ -6963,64 +5342,6 @@ "@babel/core": "^7.8.0" } }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/babel-jest/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/babel-jest/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -7030,18 +5351,6 @@ "node": ">=8" } }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", @@ -7074,12 +5383,12 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz", + "integrity": "sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==", "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", + "@babel/compat-data": "^7.27.7", + "@babel/helper-define-polyfill-provider": "^0.6.5", "semver": "^6.3.1" }, "peerDependencies": { @@ -7099,20 +5408,23 @@ } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz", + "integrity": "sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" + "@babel/helper-define-polyfill-provider": "^0.6.5" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-plugin-syntax-trailing-function-commas": { - "version": "7.0.0-beta.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz", - "integrity": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" + "node_modules/babel-plugin-transform-flow-enums": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-enums/-/babel-plugin-transform-flow-enums-0.0.2.tgz", + "integrity": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==", + "dependencies": { + "@babel/plugin-syntax-flow": "^7.12.1" + } }, "node_modules/babel-preset-current-node-syntax": { "version": "1.1.0", @@ -7140,43 +5452,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/babel-preset-fbjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz", - "integrity": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==", - "dependencies": { - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-syntax-class-properties": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-block-scoped-functions": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-for-of": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-member-expression-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-object-super": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-property-literals": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, "node_modules/babel-preset-jest": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz", @@ -7217,6 +5492,14 @@ } ] }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.20", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.20.tgz", + "integrity": "sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, "node_modules/basic-ftp": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", @@ -7389,9 +5672,9 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -7409,9 +5692,9 @@ } }, "node_modules/browserslist": { - "version": "4.23.3", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", - "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "version": "4.27.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz", + "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==", "funding": [ { "type": "opencollective", @@ -7427,10 +5710,11 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001646", - "electron-to-chromium": "^1.5.4", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.0" + "baseline-browser-mapping": "^2.8.19", + "caniuse-lite": "^1.0.30001751", + "electron-to-chromium": "^1.5.238", + "node-releases": "^2.0.26", + "update-browserslist-db": "^1.1.4" }, "bin": { "browserslist": "cli.js" @@ -7491,9 +5775,9 @@ } }, "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } @@ -7609,9 +5893,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001651", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz", - "integrity": "sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==", + "version": "1.0.30001751", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz", + "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==", "funding": [ { "type": "opencollective", @@ -7628,41 +5912,76 @@ ] }, "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/chalk/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, "engines": { - "node": ">=0.8.0" + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" + }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/chromium-edge-launcher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/chromium-edge-launcher/-/chromium-edge-launcher-1.0.0.tgz", + "integrity": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==", + "dependencies": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0", + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true, + "node_modules/chromium-edge-launcher/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, "engines": { "node": ">=10" } }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, "node_modules/ci-info": { "version": "3.9.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", @@ -7766,36 +6085,6 @@ "node": ">=12" } }, - "node_modules/cliui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/cliui/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cliui/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/cliui/node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -7850,17 +6139,20 @@ "dev": true }, "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { - "color-name": "1.1.3" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/colorette": { "version": "1.4.0", @@ -7923,16 +6215,16 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { @@ -7952,6 +6244,25 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -8369,11 +6680,11 @@ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" }, "node_modules/core-js-compat": { - "version": "3.38.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.0.tgz", - "integrity": "sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==", + "version": "3.46.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.46.0.tgz", + "integrity": "sha512-p9hObIIEENxSV8xIu+V68JjSeARg6UVMG5mR+JEUguG3sI6MsiS1njz2jHmyJDvA+8jX/sytkBHup6kxhM9law==", "dependencies": { - "browserslist": "^4.23.3" + "browserslist": "^4.26.3" }, "funding": { "type": "opencollective", @@ -8433,10 +6744,9 @@ "dev": true }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -8557,9 +6867,9 @@ } }, "node_modules/dayjs": { - "version": "1.11.12", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.12.tgz", - "integrity": "sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==" + "version": "1.11.18", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.18.tgz", + "integrity": "sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==" }, "node_modules/debug": { "version": "4.3.6", @@ -8670,7 +6980,6 @@ "version": "4.3.1", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -9169,13 +7478,16 @@ } }, "node_modules/deprecated-react-native-prop-types": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-3.0.2.tgz", - "integrity": "sha512-JoZY5iNM+oJlN2Ldpq0KSi0h3Nig4hlNJj5nWzWp8eL3uikMCvHwjSGPitwkEw0arL5JFra5nuGJQpXRbEjApg==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-5.0.0.tgz", + "integrity": "sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==", "dependencies": { - "@react-native/normalize-color": "^2.1.0", + "@react-native/normalize-colors": "^0.73.0", "invariant": "^2.2.4", "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=18" } }, "node_modules/deprecation": { @@ -9268,9 +7580,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.5.11", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.11.tgz", - "integrity": "sha512-R1CccCDYqndR25CaXFd6hp/u9RaaMcftMkphmvuepXr5b1vfLkRml6aWVeBhXJ7rbevHkKEMJtz8XqPf7ffmew==" + "version": "1.5.240", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.240.tgz", + "integrity": "sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==" }, "node_modules/emittery": { "version": "0.10.2", @@ -9301,14 +7613,15 @@ "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, "dependencies": { "once": "^1.4.0" } }, "node_modules/envinfo": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", - "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.19.0.tgz", + "integrity": "sha512-DoSM9VyG6O3vqBf+p3Gjgr/Q52HYBBtO3v+4koAxt1MnWr+zEnxE+nke/yXS4lt2P4SYCHQ4V3f1i88LQVOpAw==", "bin": { "envinfo": "dist/cli.js" }, @@ -9529,9 +7842,9 @@ } }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "engines": { "node": ">=6" } @@ -9924,55 +8237,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", @@ -10016,15 +8280,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/node_modules/is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", @@ -10040,18 +8295,6 @@ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", @@ -10166,7 +8409,6 @@ "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -10210,6 +8452,11 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, + "node_modules/exponential-backoff": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz", + "integrity": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==" + }, "node_modules/external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", @@ -10282,21 +8529,17 @@ "dev": true }, "node_modules/fast-xml-parser": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz", - "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz", + "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/NaturalIntelligence" - }, - { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" } ], "dependencies": { - "strnum": "^1.0.5" + "strnum": "^1.1.1" }, "bin": { "fxparser": "src/cli/cli.js" @@ -10574,10 +8817,15 @@ "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, + "node_modules/flow-enums-runtime": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/flow-enums-runtime/-/flow-enums-runtime-0.0.6.tgz", + "integrity": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==" + }, "node_modules/flow-parser": { - "version": "0.185.2", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.185.2.tgz", - "integrity": "sha512-2hJ5ACYeJCzNtiVULov6pljKOLygy0zddoqSI1fFetM+XRPpRshFdGEijtqlamA1XwyZ+7rhryI6FQFzvtLWUQ==", + "version": "0.206.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.206.0.tgz", + "integrity": "sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==", "engines": { "node": ">=0.4.0" } @@ -10749,21 +8997,6 @@ "node": ">=6.9.0" } }, - "node_modules/get-pkg-repo/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/get-pkg-repo/node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -10775,24 +9008,6 @@ "wrap-ansi": "^7.0.0" } }, - "node_modules/get-pkg-repo/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/get-pkg-repo/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/get-pkg-repo/node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -10872,7 +9087,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, "engines": { "node": ">=10" }, @@ -11173,11 +9387,11 @@ } }, "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/has-property-descriptors": { @@ -11255,16 +9469,16 @@ } }, "node_modules/hermes-estree": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.8.0.tgz", - "integrity": "sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==" + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.15.0.tgz", + "integrity": "sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==" }, "node_modules/hermes-parser": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.8.0.tgz", - "integrity": "sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==", + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.15.0.tgz", + "integrity": "sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==", "dependencies": { - "hermes-estree": "0.8.0" + "hermes-estree": "0.15.0" } }, "node_modules/hermes-profile-transformer": { @@ -11279,11 +9493,11 @@ } }, "node_modules/hermes-profile-transformer/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", "engines": { - "node": ">= 8" + "node": ">= 12" } }, "node_modules/hoist-non-react-statics": { @@ -11414,7 +9628,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, "engines": { "node": ">=10.17.0" } @@ -11460,14 +9673,17 @@ } }, "node_modules/image-size": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.6.3.tgz", - "integrity": "sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.1.tgz", + "integrity": "sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==", + "dependencies": { + "queue": "6.0.2" + }, "bin": { "image-size": "bin/image-size.js" }, "engines": { - "node": ">=4.0" + "node": ">=16.x" } }, "node_modules/import-fresh": { @@ -11770,9 +9986,9 @@ } }, "node_modules/is-core-module": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", - "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dependencies": { "hasown": "^2.0.2" }, @@ -12273,7 +10489,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, "engines": { "node": ">=8" }, @@ -12418,11 +10633,28 @@ } }, "node_modules/is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, "engines": { - "node": ">=4" + "node": ">=8" + } + }, + "node_modules/is-wsl/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-yarn-global": { @@ -12502,31 +10734,10 @@ "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-source-maps": { @@ -12660,64 +10871,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-circus/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -12727,18 +10880,6 @@ "node": ">=8" } }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-cli": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.3.tgz", @@ -12773,76 +10914,6 @@ } } }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-config": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-28.1.3.tgz", @@ -12888,168 +10959,28 @@ } } }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", - "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^28.1.1", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-config/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-diff": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", + "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-docblock": { @@ -13080,76 +11011,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-environment-node": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.3.tgz", @@ -13229,76 +11090,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-message-util": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", @@ -13319,64 +11110,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-message-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-message-util/node_modules/slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -13386,18 +11119,6 @@ "node": ">=8" } }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-mock": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", @@ -13453,79 +11174,21 @@ "resolve.exports": "^1.1.0", "slash": "^3.0.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz", - "integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==", - "dev": true, - "dependencies": { - "jest-regex-util": "^28.0.2", - "jest-snapshot": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/jest-resolve-dependencies": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz", + "integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==", "dev": true, "dependencies": { - "color-name": "~1.1.4" + "jest-regex-util": "^28.0.2", + "jest-snapshot": "^28.1.3" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-resolve/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-resolve/node_modules/resolve": { @@ -13554,18 +11217,6 @@ "node": ">=8" } }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-runner": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.3.tgz", @@ -13598,76 +11249,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-runtime": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.3.tgz", @@ -13695,195 +11276,55 @@ "jest-snapshot": "^28.1.3", "jest-util": "^28.1.3", "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz", - "integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^28.1.3", - "@jest/transform": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^28.1.3", - "graceful-fs": "^4.2.9", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-haste-map": "^28.1.3", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3", - "natural-compare": "^1.4.0", - "pretty-format": "^28.1.3", - "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" + "strip-bom": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-runtime/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "engines": { "node": ">=8" } }, + "node_modules/jest-snapshot": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz", + "integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^28.1.3", + "graceful-fs": "^4.2.9", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-haste-map": "^28.1.3", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "natural-compare": "^1.4.0", + "pretty-format": "^28.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, "node_modules/jest-snapshot/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", @@ -13896,18 +11337,6 @@ "node": ">=10" } }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-util": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", @@ -13925,76 +11354,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-validate": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.3.tgz", @@ -14012,21 +11371,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", @@ -14039,61 +11383,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-watcher": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", @@ -14113,76 +11402,6 @@ "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-worker": { "version": "28.1.3", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", @@ -14194,16 +11413,7 @@ "supports-color": "^8.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, "node_modules/jest-worker/node_modules/supports-color": { @@ -14298,93 +11508,6 @@ "@babel/preset-env": "^7.1.6" } }, - "node_modules/jscodeshift/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jscodeshift/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jscodeshift/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jscodeshift/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jscodeshift/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jscodeshift/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/jscodeshift/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jscodeshift/node_modules/temp": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", - "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", - "dependencies": { - "rimraf": "~2.6.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/jscodeshift/node_modules/write-file-atomic": { "version": "2.4.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", @@ -14396,14 +11519,14 @@ } }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-buffer": { @@ -14565,6 +11688,28 @@ "node": ">= 0.8.0" } }, + "node_modules/lighthouse-logger": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", + "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", + "dependencies": { + "debug": "^2.6.9", + "marky": "^1.2.2" + } + }, + "node_modules/lighthouse-logger/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/lighthouse-logger/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -14634,7 +11779,8 @@ "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true }, "node_modules/lodash.camelcase": { "version": "4.3.0", @@ -14751,59 +11897,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/log-symbols/node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", @@ -14815,17 +11908,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/logkitty": { "version": "0.7.1", "resolved": "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz", @@ -14946,28 +12028,22 @@ "loose-envify": "cli.js" } }, - "node_modules/lottie-ios": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/lottie-ios/-/lottie-ios-3.5.0.tgz", - "integrity": "sha512-DM6BYLhHTzvUsK89AjY+K9RwVGkOBwbH/iytjyZUmFbXz8DVsoPEyy+c7L5NZmVouZHvLnOQp6NaYTkwMo+iOg==", - "peer": true - }, "node_modules/lottie-react-native": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/lottie-react-native/-/lottie-react-native-5.1.6.tgz", - "integrity": "sha512-vhdeZstXMfuVKwnddYWjJgQ/1whGL58IJEJu/iSf0XQ5gAb4pp/+vy91mdYQLezlb8Aw4Vu3fKnqErJL2hwchg==", + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/lottie-react-native/-/lottie-react-native-7.3.4.tgz", + "integrity": "sha512-XUh7eGFb7ID8JRdU6U4N4cYQeYmjtdQRvd8ZXJ6xrdSsn5gZD0c79ITOREPcwJg4YupBFHgyV1GXdAHQP+KYUQ==", + "license": "Apache-2.0", "peer": true, - "dependencies": { - "invariant": "^2.2.2", - "react-native-safe-modules": "^1.0.3" - }, "peerDependencies": { - "lottie-ios": "^3.4.0", + "@lottiefiles/dotlottie-react": "^0.13.5", "react": "*", "react-native": ">=0.46", "react-native-windows": ">=0.63.x" }, "peerDependenciesMeta": { + "@lottiefiles/dotlottie-react": { + "optional": true + }, "react-native-windows": { "optional": true } @@ -15058,6 +12134,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/marky": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/marky/-/marky-1.3.0.tgz", + "integrity": "sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==" + }, "node_modules/memoize-one": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", @@ -15261,9 +12342,9 @@ } }, "node_modules/metro": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro/-/metro-0.73.10.tgz", - "integrity": "sha512-J2gBhNHFtc/Z48ysF0B/bfTwUwaRDLjNv7egfhQCc+934dpXcjJG2KZFeuybF+CvA9vo4QUi56G2U+RSAJ5tsA==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro/-/metro-0.80.12.tgz", + "integrity": "sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==", "dependencies": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.20.0", @@ -15272,125 +12353,156 @@ "@babel/template": "^7.0.0", "@babel/traverse": "^7.20.0", "@babel/types": "^7.20.0", - "absolute-path": "^0.0.0", "accepts": "^1.3.7", - "async": "^3.2.2", "chalk": "^4.0.0", "ci-info": "^2.0.0", "connect": "^3.6.5", "debug": "^2.2.0", "denodeify": "^1.2.1", "error-stack-parser": "^2.0.6", + "flow-enums-runtime": "^0.0.6", "graceful-fs": "^4.2.4", - "hermes-parser": "0.8.0", - "image-size": "^0.6.0", + "hermes-parser": "0.23.1", + "image-size": "^1.0.2", "invariant": "^2.2.4", - "jest-worker": "^27.2.0", + "jest-worker": "^29.6.3", "jsc-safe-url": "^0.2.2", "lodash.throttle": "^4.1.1", - "metro-babel-transformer": "0.73.10", - "metro-cache": "0.73.10", - "metro-cache-key": "0.73.10", - "metro-config": "0.73.10", - "metro-core": "0.73.10", - "metro-file-map": "0.73.10", - "metro-hermes-compiler": "0.73.10", - "metro-inspector-proxy": "0.73.10", - "metro-minify-terser": "0.73.10", - "metro-minify-uglify": "0.73.10", - "metro-react-native-babel-preset": "0.73.10", - "metro-resolver": "0.73.10", - "metro-runtime": "0.73.10", - "metro-source-map": "0.73.10", - "metro-symbolicate": "0.73.10", - "metro-transform-plugins": "0.73.10", - "metro-transform-worker": "0.73.10", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-config": "0.80.12", + "metro-core": "0.80.12", + "metro-file-map": "0.80.12", + "metro-resolver": "0.80.12", + "metro-runtime": "0.80.12", + "metro-source-map": "0.80.12", + "metro-symbolicate": "0.80.12", + "metro-transform-plugins": "0.80.12", + "metro-transform-worker": "0.80.12", "mime-types": "^2.1.27", - "node-fetch": "^2.2.0", "nullthrows": "^1.1.1", - "rimraf": "^3.0.2", "serialize-error": "^2.1.0", "source-map": "^0.5.6", "strip-ansi": "^6.0.0", - "temp": "0.8.3", "throat": "^5.0.0", - "ws": "^7.5.1", - "yargs": "^17.5.1" + "ws": "^7.5.10", + "yargs": "^17.6.2" }, "bin": { "metro": "src/cli.js" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-babel-transformer": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.73.10.tgz", - "integrity": "sha512-Yv2myTSnpzt/lTyurLvqYbBkytvUJcLHN8XD3t7W6rGiLTQPzmf1zypHQLphvcAXtCWBOXFtH7KLOSi2/qMg+A==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-babel-transformer/-/metro-babel-transformer-0.80.12.tgz", + "integrity": "sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==", "dependencies": { "@babel/core": "^7.20.0", - "hermes-parser": "0.8.0", - "metro-source-map": "0.73.10", + "flow-enums-runtime": "^0.0.6", + "hermes-parser": "0.23.1", "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-babel-transformer/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==" + }, + "node_modules/metro-babel-transformer/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "dependencies": { + "hermes-estree": "0.23.1" } }, "node_modules/metro-cache": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.73.10.tgz", - "integrity": "sha512-wPGlQZpdVlM404m7MxJqJ+hTReDr5epvfPbt2LerUAHY9RN99w61FeeAe25BMZBwgUgDtAsfGlJ51MBHg8MAqw==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache/-/metro-cache-0.80.12.tgz", + "integrity": "sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==", "dependencies": { - "metro-core": "0.73.10", - "rimraf": "^3.0.2" + "exponential-backoff": "^3.1.1", + "flow-enums-runtime": "^0.0.6", + "metro-core": "0.80.12" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-cache-key": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.73.10.tgz", - "integrity": "sha512-JMVDl/EREDiUW//cIcUzRjKSwE2AFxVWk47cFBer+KA4ohXIG2CQPEquT56hOw1Y1s6gKNxxs1OlAOEsubrFjw==" + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-cache-key/-/metro-cache-key-0.80.12.tgz", + "integrity": "sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } }, "node_modules/metro-config": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.73.10.tgz", - "integrity": "sha512-wIlybd1Z9I8K2KcStTiJxTB7OK529dxFgogNpKCTU/3DxkgAASqSkgXnZP6kVyqjh5EOWAKFe5U6IPic7kXDdQ==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-config/-/metro-config-0.80.12.tgz", + "integrity": "sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==", "dependencies": { + "connect": "^3.6.5", "cosmiconfig": "^5.0.5", - "jest-validate": "^26.5.2", - "metro": "0.73.10", - "metro-cache": "0.73.10", - "metro-core": "0.73.10", - "metro-runtime": "0.73.10" + "flow-enums-runtime": "^0.0.6", + "jest-validate": "^29.6.3", + "metro": "0.80.12", + "metro-cache": "0.80.12", + "metro-core": "0.80.12", + "metro-runtime": "0.80.12" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/metro-config/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/metro-config/node_modules/@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dependencies": { + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^15.0.0", + "@types/yargs": "^17.0.8", "chalk": "^4.0.0" }, "engines": { - "node": ">= 10.14.2" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro-config/node_modules/@types/yargs": { - "version": "15.0.19", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", - "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", - "dependencies": { - "@types/yargs-parser": "*" - } + "node_modules/metro-config/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" }, "node_modules/metro-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" @@ -15409,43 +12521,12 @@ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/metro-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/metro-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/metro-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/metro-config/node_modules/cosmiconfig": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", @@ -15460,14 +12541,6 @@ "node": ">=4" } }, - "node_modules/metro-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/metro-config/node_modules/import-fresh": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", @@ -15481,27 +12554,27 @@ } }, "node_modules/metro-config/node_modules/jest-get-type": { - "version": "26.3.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", - "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "engines": { - "node": ">= 10.14.2" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/metro-config/node_modules/jest-validate": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", - "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dependencies": { - "@jest/types": "^26.6.2", - "camelcase": "^6.0.0", + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^26.3.0", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^26.6.2" + "pretty-format": "^29.7.0" }, "engines": { - "node": ">= 10.14.2" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/metro-config/node_modules/js-yaml": { @@ -15529,23 +12602,22 @@ } }, "node_modules/metro-config/node_modules/pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dependencies": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^17.0.1" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">= 10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/metro-config/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" }, "node_modules/metro-config/node_modules/resolve-from": { "version": "3.0.0", @@ -15560,116 +12632,74 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, - "node_modules/metro-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/metro-core": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.73.10.tgz", - "integrity": "sha512-5uYkajIxKyL6W45iz/ftNnYPe1l92CvF2QJeon1CHsMXkEiOJxEjo41l+iSnO/YodBGrmMCyupSO4wOQGUc0lw==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.80.12.tgz", + "integrity": "sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==", "dependencies": { + "flow-enums-runtime": "^0.0.6", "lodash.throttle": "^4.1.1", - "metro-resolver": "0.73.10" + "metro-resolver": "0.80.12" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-file-map": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.73.10.tgz", - "integrity": "sha512-XOMWAybeaXyD6zmVZPnoCCL2oO3rp4ta76oUlqWP0skBzhFxVtkE/UtDwApEMUY361JeBBago647gnKiARs+1g==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-file-map/-/metro-file-map-0.80.12.tgz", + "integrity": "sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==", "dependencies": { - "abort-controller": "^3.0.0", "anymatch": "^3.0.3", "debug": "^2.2.0", "fb-watchman": "^2.0.0", + "flow-enums-runtime": "^0.0.6", "graceful-fs": "^4.2.4", "invariant": "^2.2.4", - "jest-regex-util": "^27.0.6", - "jest-serializer": "^27.0.6", - "jest-util": "^27.2.0", - "jest-worker": "^27.2.0", + "jest-worker": "^29.6.3", "micromatch": "^4.0.4", + "node-abort-controller": "^3.1.1", "nullthrows": "^1.1.1", "walker": "^1.0.7" }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/metro-file-map/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/metro-file-map/node_modules/@types/yargs": { - "version": "16.0.9", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.9.tgz", - "integrity": "sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/metro-file-map/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/metro-file-map/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/metro-file-map/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro-file-map/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/metro-file-map/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dependencies": { - "color-name": "~1.1.4" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" }, "engines": { - "node": ">=7.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro-file-map/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "node_modules/metro-file-map/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" }, "node_modules/metro-file-map/node_modules/debug": { "version": "2.6.9", @@ -15679,244 +12709,107 @@ "ms": "2.0.0" } }, - "node_modules/metro-file-map/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/metro-file-map/node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, "node_modules/metro-file-map/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dependencies": { - "@jest/types": "^27.5.1", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/metro-file-map/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/metro-file-map/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/metro-file-map/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/metro-file-map/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/metro-hermes-compiler": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-hermes-compiler/-/metro-hermes-compiler-0.73.10.tgz", - "integrity": "sha512-rTRWEzkVrwtQLiYkOXhSdsKkIObnL+Jqo+IXHI7VEK2aSLWRAbtGNqECBs44kbOUypDYTFFE+WLtoqvUWqYkWg==" - }, - "node_modules/metro-inspector-proxy": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-inspector-proxy/-/metro-inspector-proxy-0.73.10.tgz", - "integrity": "sha512-CEEvocYc5xCCZBtGSIggMCiRiXTrnBbh8pmjKQqm9TtJZALeOGyt5pXUaEkKGnhrXETrexsg6yIbsQHhEvVfvQ==", - "dependencies": { - "connect": "^3.6.5", - "debug": "^2.2.0", - "ws": "^7.5.1", - "yargs": "^17.5.1" - }, - "bin": { - "metro-inspector-proxy": "src/cli.js" - } - }, - "node_modules/metro-inspector-proxy/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/metro-inspector-proxy/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/metro-inspector-proxy/node_modules/ws": { - "version": "7.5.10", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", - "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/metro-minify-terser": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.73.10.tgz", - "integrity": "sha512-uG7TSKQ/i0p9kM1qXrwbmY3v+6BrMItsOcEXcSP8Z+68bb+t9HeVK0T/hIfUu1v1PEnonhkhfzVsaP8QyTd5lQ==", - "dependencies": { - "terser": "^5.15.0" - } - }, - "node_modules/metro-minify-uglify": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-minify-uglify/-/metro-minify-uglify-0.73.10.tgz", - "integrity": "sha512-eocnSeJKnLz/UoYntVFhCJffED7SLSgbCHgNvI6ju6hFb6EFHGJT9OLbkJWeXaWBWD3Zw5mYLS8GGqGn/CHZPA==", - "dependencies": { - "uglify-es": "^3.1.9" - } - }, - "node_modules/metro-react-native-babel-preset": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.73.10.tgz", - "integrity": "sha512-1/dnH4EHwFb2RKEKx34vVDpUS3urt2WEeR8FYim+ogqALg4sTpG7yeQPxWpbgKATezt4rNfqAANpIyH19MS4BQ==", - "dependencies": { - "@babel/core": "^7.20.0", - "@babel/plugin-proposal-async-generator-functions": "^7.0.0", - "@babel/plugin-proposal-class-properties": "^7.0.0", - "@babel/plugin-proposal-export-default-from": "^7.0.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-proposal-object-rest-spread": "^7.0.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.0.0", - "@babel/plugin-proposal-optional-chaining": "^7.0.0", - "@babel/plugin-syntax-dynamic-import": "^7.0.0", - "@babel/plugin-syntax-export-default-from": "^7.0.0", - "@babel/plugin-syntax-flow": "^7.18.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.0.0", - "@babel/plugin-syntax-optional-chaining": "^7.0.0", - "@babel/plugin-transform-arrow-functions": "^7.0.0", - "@babel/plugin-transform-async-to-generator": "^7.0.0", - "@babel/plugin-transform-block-scoping": "^7.0.0", - "@babel/plugin-transform-classes": "^7.0.0", - "@babel/plugin-transform-computed-properties": "^7.0.0", - "@babel/plugin-transform-destructuring": "^7.0.0", - "@babel/plugin-transform-flow-strip-types": "^7.0.0", - "@babel/plugin-transform-function-name": "^7.0.0", - "@babel/plugin-transform-literals": "^7.0.0", - "@babel/plugin-transform-modules-commonjs": "^7.0.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.0.0", - "@babel/plugin-transform-parameters": "^7.0.0", - "@babel/plugin-transform-react-display-name": "^7.0.0", - "@babel/plugin-transform-react-jsx": "^7.0.0", - "@babel/plugin-transform-react-jsx-self": "^7.0.0", - "@babel/plugin-transform-react-jsx-source": "^7.0.0", - "@babel/plugin-transform-runtime": "^7.0.0", - "@babel/plugin-transform-shorthand-properties": "^7.0.0", - "@babel/plugin-transform-spread": "^7.0.0", - "@babel/plugin-transform-sticky-regex": "^7.0.0", - "@babel/plugin-transform-template-literals": "^7.0.0", - "@babel/plugin-transform-typescript": "^7.5.0", - "@babel/plugin-transform-unicode-regex": "^7.0.0", - "@babel/template": "^7.0.0", - "react-refresh": "^0.4.0" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/metro-file-map/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, - "peerDependencies": { - "@babel/core": "*" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro-react-native-babel-transformer": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.73.10.tgz", - "integrity": "sha512-4G/upwqKdmKEjmsNa92/NEgsOxUWOygBVs+FXWfXWKgybrmcjh3NoqdRYrROo9ZRA/sB9Y/ZXKVkWOGKHtGzgg==", + "node_modules/metro-file-map/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/metro-file-map/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dependencies": { - "@babel/core": "^7.20.0", - "babel-preset-fbjs": "^3.4.0", - "hermes-parser": "0.8.0", - "metro-babel-transformer": "0.73.10", - "metro-react-native-babel-preset": "0.73.10", - "metro-source-map": "0.73.10", - "nullthrows": "^1.1.1" + "has-flag": "^4.0.0" }, - "peerDependencies": { - "@babel/core": "*" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/metro-minify-terser": { + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-minify-terser/-/metro-minify-terser-0.80.12.tgz", + "integrity": "sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==", + "dependencies": { + "flow-enums-runtime": "^0.0.6", + "terser": "^5.15.0" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-resolver": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.73.10.tgz", - "integrity": "sha512-HeXbs+0wjakaaVQ5BI7eT7uqxlZTc9rnyw6cdBWWMgUWB++KpoI0Ge7Hi6eQAOoVAzXC3m26mPFYLejpzTWjng==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.80.12.tgz", + "integrity": "sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==", "dependencies": { - "absolute-path": "^0.0.0" + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-runtime": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.73.10.tgz", - "integrity": "sha512-EpVKm4eN0Fgx2PEWpJ5NiMArV8zVoOin866jIIvzFLpmkZz1UEqgjf2JAfUJnjgv3fjSV3JqeGG2vZCaGQBTow==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.80.12.tgz", + "integrity": "sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==", "dependencies": { - "@babel/runtime": "^7.0.0", - "react-refresh": "^0.4.0" + "@babel/runtime": "^7.25.0", + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-source-map": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.73.10.tgz", - "integrity": "sha512-NAGv14701p/YaFZ76KzyPkacBw/QlEJF1f8elfs23N1tC33YyKLDKvPAzFJiYqjdcFvuuuDCA8JCXd2TgLxNPw==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.80.12.tgz", + "integrity": "sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==", "dependencies": { "@babel/traverse": "^7.20.0", "@babel/types": "^7.20.0", + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "metro-symbolicate": "0.73.10", + "metro-symbolicate": "0.80.12", "nullthrows": "^1.1.1", - "ob1": "0.73.10", + "ob1": "0.80.12", "source-map": "^0.5.6", "vlq": "^1.0.0" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-source-map/node_modules/source-map": { @@ -15928,12 +12821,13 @@ } }, "node_modules/metro-symbolicate": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.73.10.tgz", - "integrity": "sha512-PmCe3TOe1c/NVwMlB+B17me951kfkB3Wve5RqJn+ErPAj93od1nxicp6OJe7JT4QBRnpUP8p9tw2sHKqceIzkA==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-symbolicate/-/metro-symbolicate-0.80.12.tgz", + "integrity": "sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==", "dependencies": { + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "metro-source-map": "0.73.10", + "metro-source-map": "0.80.12", "nullthrows": "^1.1.1", "source-map": "^0.5.6", "through2": "^2.0.1", @@ -15943,7 +12837,7 @@ "metro-symbolicate": "src/index.js" }, "engines": { - "node": ">=8.3" + "node": ">=18" } }, "node_modules/metro-symbolicate/node_modules/isarray": { @@ -15991,87 +12885,81 @@ } }, "node_modules/metro-transform-plugins": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.73.10.tgz", - "integrity": "sha512-D4AgD3Vsrac+4YksaPmxs/0ocT67bvwTkFSIgWWeDvWwIG0U1iHzTS9f8Bvb4PITnXryDoFtjI6OWF7uOpGxpA==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-plugins/-/metro-transform-plugins-0.80.12.tgz", + "integrity": "sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==", "dependencies": { "@babel/core": "^7.20.0", "@babel/generator": "^7.20.0", "@babel/template": "^7.0.0", "@babel/traverse": "^7.20.0", + "flow-enums-runtime": "^0.0.6", "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" } }, "node_modules/metro-transform-worker": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.73.10.tgz", - "integrity": "sha512-IySvVubudFxahxOljWtP0QIMMpgUrCP0bW16cz2Enof0PdumwmR7uU3dTbNq6S+XTzuMHR+076aIe4VhPAWsIQ==", + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/metro-transform-worker/-/metro-transform-worker-0.80.12.tgz", + "integrity": "sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==", "dependencies": { "@babel/core": "^7.20.0", "@babel/generator": "^7.20.0", "@babel/parser": "^7.20.0", "@babel/types": "^7.20.0", - "babel-preset-fbjs": "^3.4.0", - "metro": "0.73.10", - "metro-babel-transformer": "0.73.10", - "metro-cache": "0.73.10", - "metro-cache-key": "0.73.10", - "metro-hermes-compiler": "0.73.10", - "metro-source-map": "0.73.10", - "metro-transform-plugins": "0.73.10", + "flow-enums-runtime": "^0.0.6", + "metro": "0.80.12", + "metro-babel-transformer": "0.80.12", + "metro-cache": "0.80.12", + "metro-cache-key": "0.80.12", + "metro-minify-terser": "0.80.12", + "metro-source-map": "0.80.12", + "metro-transform-plugins": "0.80.12", "nullthrows": "^1.1.1" + }, + "engines": { + "node": ">=18" } }, - "node_modules/metro/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/metro/node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dependencies": { - "color-convert": "^2.0.1" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/metro/node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/metro/node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, "node_modules/metro/node_modules/ci-info": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" }, - "node_modules/metro/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/metro/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/metro/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -16080,39 +12968,61 @@ "ms": "2.0.0" } }, - "node_modules/metro/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" + "node_modules/metro/node_modules/hermes-estree": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.23.1.tgz", + "integrity": "sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==" + }, + "node_modules/metro/node_modules/hermes-parser": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.23.1.tgz", + "integrity": "sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==", + "dependencies": { + "hermes-estree": "0.23.1" } }, - "node_modules/metro/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/metro/node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dependencies": { + "@jest/types": "^29.6.3", "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">= 10.13.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/metro/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/metro/node_modules/jest-util/node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/metro/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dependencies": { - "has-flag": "^4.0.0" + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/metro/node_modules/ms": { @@ -16129,14 +13039,17 @@ } }, "node_modules/metro/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dependencies": { "has-flag": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/metro/node_modules/ws": { @@ -16160,9 +13073,9 @@ } }, "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -16183,9 +13096,9 @@ } }, "node_modules/mime-db": { - "version": "1.53.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz", - "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==", + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", "engines": { "node": ">= 0.6" } @@ -16306,9 +13219,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "funding": [ { "type": "github", @@ -16335,9 +13248,9 @@ "dev": true }, "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", "engines": { "node": ">= 0.6" } @@ -16383,11 +13296,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "node_modules/nocache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz", @@ -16396,6 +13304,11 @@ "node": ">=12.0.0" } }, + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + }, "node_modules/node-dir": { "version": "0.1.17", "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", @@ -16451,9 +13364,9 @@ "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" }, "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" + "version": "2.0.26", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.26.tgz", + "integrity": "sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==" }, "node_modules/node-stream-zip": { "version": "1.15.0", @@ -16518,7 +13431,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, "dependencies": { "path-key": "^3.0.0" }, @@ -16532,9 +13444,15 @@ "integrity": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" }, "node_modules/ob1": { - "version": "0.73.10", - "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.73.10.tgz", - "integrity": "sha512-aO6EYC+QRRCkZxVJhCWhLKgVjhNuD6Gu1riGjxrIm89CqLsmKgxzYDDEsktmKsoDeRdWGQM5EdMzXDl5xcVfsw==" + "version": "0.80.12", + "resolved": "https://registry.npmjs.org/ob1/-/ob1-0.80.12.tgz", + "integrity": "sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==", + "dependencies": { + "flow-enums-runtime": "^0.0.6" + }, + "engines": { + "node": ">=18" + } }, "node_modules/object-assign": { "version": "4.1.1", @@ -16644,9 +13562,9 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", "engines": { "node": ">= 0.8" } @@ -16684,6 +13602,14 @@ "node": ">=8" } }, + "node_modules/open/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "engines": { + "node": ">=4" + } + }, "node_modules/optionator": { "version": "0.9.4", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", @@ -16723,59 +13649,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/ora/node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", @@ -16787,17 +13660,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/os-name": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/os-name/-/os-name-5.1.0.tgz", @@ -16818,6 +13680,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -16831,14 +13694,6 @@ "node": ">=12.20" } }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "engines": { - "node": ">=4" - } - }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -17028,7 +13883,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, "engines": { "node": ">=8" } @@ -17048,9 +13902,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -17336,6 +14190,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -17393,6 +14248,14 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/queue": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", + "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "dependencies": { + "inherits": "~2.0.3" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -17500,51 +14363,54 @@ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "node_modules/react-native": { - "version": "0.71.19", - "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.71.19.tgz", - "integrity": "sha512-E6Rz4lpe4NC9ZR6zq9AWiB0MAoVeidr+aPu/pmwk5ezvVL/wbQ1Gdj70v7fKMC8Nz5wYFO1S0XUNPUKYaPhfeg==", - "dependencies": { - "@jest/create-cache-key-function": "^29.2.1", - "@react-native-community/cli": "10.2.7", - "@react-native-community/cli-platform-android": "10.2.0", - "@react-native-community/cli-platform-ios": "10.2.5", - "@react-native/assets": "1.0.0", - "@react-native/normalize-color": "2.1.0", - "@react-native/polyfills": "2.0.0", + "version": "0.73.11", + "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.73.11.tgz", + "integrity": "sha512-yvQIX+ZXOHMFnhmwZ1fBpRI/53k+iLN8DxVf24Fx4ABU63RGAYfyCZC0/3W+5OUVx4KSIZUv4Tv+/NGIieBOwg==", + "dependencies": { + "@jest/create-cache-key-function": "^29.6.3", + "@react-native-community/cli": "12.3.7", + "@react-native-community/cli-platform-android": "12.3.7", + "@react-native-community/cli-platform-ios": "12.3.7", + "@react-native/assets-registry": "0.73.1", + "@react-native/codegen": "0.73.3", + "@react-native/community-cli-plugin": "0.73.18", + "@react-native/gradle-plugin": "0.73.5", + "@react-native/js-polyfills": "0.73.1", + "@react-native/normalize-colors": "0.73.2", + "@react-native/virtualized-lists": "0.73.4", "abort-controller": "^3.0.0", "anser": "^1.4.9", "ansi-regex": "^5.0.0", - "base64-js": "^1.1.2", - "deprecated-react-native-prop-types": "^3.0.1", + "base64-js": "^1.5.1", + "chalk": "^4.0.0", + "deprecated-react-native-prop-types": "^5.0.0", "event-target-shim": "^5.0.1", + "flow-enums-runtime": "^0.0.6", "invariant": "^2.2.4", - "jest-environment-node": "^29.2.1", + "jest-environment-node": "^29.6.3", "jsc-android": "^250231.0.0", "memoize-one": "^5.0.0", - "metro-react-native-babel-transformer": "0.73.10", - "metro-runtime": "0.73.10", - "metro-source-map": "0.73.10", + "metro-runtime": "^0.80.3", + "metro-source-map": "^0.80.3", "mkdirp": "^0.5.1", "nullthrows": "^1.1.1", "pretty-format": "^26.5.2", "promise": "^8.3.0", - "react-devtools-core": "^4.26.1", - "react-native-codegen": "^0.71.6", - "react-native-gradle-plugin": "^0.71.19", - "react-refresh": "^0.4.0", + "react-devtools-core": "^4.27.7", + "react-refresh": "^0.14.0", "react-shallow-renderer": "^16.15.0", "regenerator-runtime": "^0.13.2", - "scheduler": "^0.23.0", - "stacktrace-parser": "^0.1.3", - "use-sync-external-store": "^1.0.0", + "scheduler": "0.24.0-canary-efb381bbf-20230505", + "stacktrace-parser": "^0.1.10", "whatwg-fetch": "^3.0.0", - "ws": "^6.2.2" + "ws": "^6.2.2", + "yargs": "^17.6.2" }, "bin": { "react-native": "cli.js" }, "engines": { - "node": ">=14" + "node": ">=18" }, "peerDependencies": { "react": "18.2.0" @@ -17609,9 +14475,9 @@ } }, "node_modules/react-native-builder-bob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, "dependencies": { "balanced-match": "^1.0.0" @@ -17782,39 +14648,22 @@ "node": ">=8" } }, - "node_modules/react-native-codegen": { - "version": "0.71.6", - "resolved": "https://registry.npmjs.org/react-native-codegen/-/react-native-codegen-0.71.6.tgz", - "integrity": "sha512-e5pR4VldIhEaFctfSAEgxbng0uG4gjBQxAHes3EKLdosH/Av90pQfSe9IDVdFIngvNPzt8Y14pNjrtqov/yNIg==", - "dependencies": { - "@babel/parser": "^7.14.0", - "flow-parser": "^0.185.0", - "jscodeshift": "^0.14.0", - "nullthrows": "^1.1.1" - } - }, "node_modules/react-native-gesture-handler": { - "version": "2.15.0", - "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.15.0.tgz", - "integrity": "sha512-cmMGW8k86o/xgVTBZZOPohvR5re4Vh65PUxH4HbBBJAYTog4aN4wTVTUlnoky01HuSN8/X4h3tI/K3XLPoDnsg==", + "version": "2.29.0", + "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.29.0.tgz", + "integrity": "sha512-nxikN5b2ebSTPqqhIlTHQJqIHTu0Y5GAhST3w3/G1pm9BlqHVFcLFPZfIaT4A3TVKjQDcKElij1hhHKpAVUcOQ==", + "license": "MIT", "peer": true, "dependencies": { "@egjs/hammerjs": "^2.0.17", "hoist-non-react-statics": "^3.3.0", - "invariant": "^2.2.4", - "lodash": "^4.17.21", - "prop-types": "^15.7.2" + "invariant": "^2.2.4" }, "peerDependencies": { "react": "*", "react-native": "*" } }, - "node_modules/react-native-gradle-plugin": { - "version": "0.71.19", - "resolved": "https://registry.npmjs.org/react-native-gradle-plugin/-/react-native-gradle-plugin-0.71.19.tgz", - "integrity": "sha512-1dVk9NwhoyKHCSxcrM6vY6cxmojeATsBobDicX0ZKr7DgUF2cBQRTKsimQFvzH8XhOVXyH8p4HyDSZNIFI8OlQ==" - }, "node_modules/react-native-image-picker": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/react-native-image-picker/-/react-native-image-picker-7.1.2.tgz", @@ -17874,33 +14723,16 @@ } }, "node_modules/react-native-safe-area-context": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.4.1.tgz", - "integrity": "sha512-xfpVd0CiZR7oBhuwJ2HcZMehg5bjha1Ohu1XHpcT+9ykula0TgovH2BNU0R5Krzf/jBR1LMjR6VabxdlUjqxcA==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-5.6.1.tgz", + "integrity": "sha512-/wJE58HLEAkATzhhX1xSr+fostLsK8Q97EfpfMDKo8jlOc1QKESSX/FQrhk7HhQH/2uSaox4Y86sNaI02kteiA==", + "license": "MIT", "peer": true, "peerDependencies": { "react": "*", "react-native": "*" } }, - "node_modules/react-native-safe-modules": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/react-native-safe-modules/-/react-native-safe-modules-1.0.3.tgz", - "integrity": "sha512-DUxti4Z+AgJ/ZsO5U7p3uSCUBko8JT8GvFlCeOXk9bMd+4qjpoDvMYpfbixXKgL88M+HwmU/KI1YFN6gsQZyBA==", - "peer": true, - "dependencies": { - "dedent": "^0.6.0" - }, - "peerDependencies": { - "react-native": "*" - } - }, - "node_modules/react-native-safe-modules/node_modules/dedent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.6.0.tgz", - "integrity": "sha512-cSfRWjXJtZQeRuZGVvDrJroCR5V2UvBNUMHsPCdNYzuAG8b9V8aAy3KUcdQrGQPXs17Y+ojbPh1aOCplg9YR9g==", - "peer": true - }, "node_modules/react-native-simple-toast": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/react-native-simple-toast/-/react-native-simple-toast-1.1.4.tgz", @@ -17908,12 +14740,13 @@ "peer": true }, "node_modules/react-native-webview": { - "version": "13.10.5", - "resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.10.5.tgz", - "integrity": "sha512-ZfQJHyifuZop8cQB8HYpL9dxss9Cw9sOlMU+/yarfG/ugoL0rky/0tq9QmEydFMXjDSplSUb22OrRdFlqfXe0g==", + "version": "13.16.0", + "resolved": "https://registry.npmjs.org/react-native-webview/-/react-native-webview-13.16.0.tgz", + "integrity": "sha512-Nh13xKZWW35C0dbOskD7OX01nQQavOzHbCw9XoZmar4eXCo7AvrYJ0jlUfRVVIJzqINxHlpECYLdmAdFsl9xDA==", + "license": "MIT", "peer": true, "dependencies": { - "escape-string-regexp": "2.0.0", + "escape-string-regexp": "^4.0.0", "invariant": "2.2.4" }, "peerDependencies": { @@ -17921,15 +14754,6 @@ "react-native": "*" } }, - "node_modules/react-native-webview/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "peer": true, - "engines": { - "node": ">=8" - } - }, "node_modules/react-native/node_modules/@jest/environment": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", @@ -18063,59 +14887,6 @@ "@types/yargs-parser": "*" } }, - "node_modules/react-native/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/react-native/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/react-native/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/react-native/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/react-native/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/react-native/node_modules/jest-environment-node": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", @@ -18337,17 +15108,6 @@ "node": ">=8" } }, - "node_modules/react-native/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/react-redux": { "version": "7.2.9", "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", @@ -18378,9 +15138,9 @@ "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, "node_modules/react-refresh": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz", - "integrity": "sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==", + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", "engines": { "node": ">=0.10.0" } @@ -18699,11 +15459,6 @@ "node": ">=4" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, "node_modules/regenerator-transform": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", @@ -18950,21 +15705,6 @@ "node": ">=14.18.0" } }, - "node_modules/release-it/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/release-it/node_modules/is-interactive": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", @@ -18989,18 +15729,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/release-it/node_modules/log-symbols": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", @@ -19490,9 +16218,9 @@ "dev": true }, "node_modules/scheduler": { - "version": "0.23.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "version": "0.24.0-canary-efb381bbf-20230505", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.24.0-canary-efb381bbf-20230505.tgz", + "integrity": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==", "dependencies": { "loose-envify": "^1.1.0" } @@ -19533,9 +16261,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -19612,19 +16340,27 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -19682,7 +16418,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, "dependencies": { "shebang-regex": "^3.0.0" }, @@ -19694,7 +16429,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, "engines": { "node": ">=8" } @@ -19777,6 +16511,30 @@ "node": ">=6" } }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/slice-ansi/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/slice-ansi/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", @@ -20193,19 +16951,10 @@ "node": ">=8" } }, - "node_modules/strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, "engines": { "node": ">=6" } @@ -20235,24 +16984,31 @@ } }, "node_modules/strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz", + "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ] }, "node_modules/sudo-prompt": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", - "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==" + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info." }, "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/supports-hyperlinks": { @@ -20268,27 +17024,6 @@ "node": ">=8" } }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", @@ -20301,22 +17036,32 @@ } }, "node_modules/temp": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz", - "integrity": "sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==", - "engines": [ - "node >=0.8.0" - ], + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz", + "integrity": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==", "dependencies": { - "os-tmpdir": "^1.0.0", - "rimraf": "~2.2.6" + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "engines": { + "node": ">=8" } }, "node_modules/temp/node_modules/rimraf": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", - "integrity": "sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==", + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, "bin": { "rimraf": "bin.js" } @@ -20338,12 +17083,12 @@ } }, "node_modules/terser": { - "version": "5.31.6", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", - "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", + "version": "5.44.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.44.0.tgz", + "integrity": "sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", + "acorn": "^8.15.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -20446,14 +17191,6 @@ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -20695,27 +17432,6 @@ "node": ">=14.17" } }, - "node_modules/uglify-es": { - "version": "3.3.9", - "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", - "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", - "deprecated": "support for ECMAScript is superseded by `uglify-js` as of v3.13.0", - "dependencies": { - "commander": "~2.13.0", - "source-map": "~0.6.1" - }, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/uglify-es/node_modules/commander": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", - "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" - }, "node_modules/uglify-js": { "version": "3.19.2", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.2.tgz", @@ -20837,9 +17553,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", - "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", "funding": [ { "type": "opencollective", @@ -20855,8 +17571,8 @@ } ], "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -20947,6 +17663,7 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.2.tgz", "integrity": "sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==", + "peer": true, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } @@ -21008,14 +17725,13 @@ "integrity": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" }, "node_modules/vm2": { - "version": "3.9.19", - "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", - "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", - "deprecated": "The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.10.0.tgz", + "integrity": "sha512-3ggF4Bs0cw4M7Rxn19/Cv3nJi04xrgHwt4uLto+zkcZocaKwP/nKP9wPx6ggN2X0DSXxOOIc63BV1jvES19wXQ==", "dev": true, "dependencies": { - "acorn": "^8.7.0", - "acorn-walk": "^8.2.0" + "acorn": "^8.14.1", + "acorn-walk": "^8.3.4" }, "bin": { "vm2": "bin/vm2" @@ -21072,7 +17788,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "dependencies": { "isexe": "^2.0.0" }, @@ -21281,36 +17996,6 @@ "node": ">=8" } }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/packages/react-native-room-kit/package.json b/packages/react-native-room-kit/package.json index b5a0d97cb..e3f377c4d 100644 --- a/packages/react-native-room-kit/package.json +++ b/packages/react-native-room-kit/package.json @@ -1,6 +1,6 @@ { "name": "@100mslive/react-native-room-kit", - "version": "1.2.3", + "version": "1.3.0", "description": "100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.", "main": "lib/commonjs/index", "module": "lib/module/index", @@ -127,7 +127,7 @@ "registry": "https://registry.npmjs.org/" }, "dependencies": { - "@100mslive/types-prebuilt": "^0.12.11", + "@100mslive/types-prebuilt": "^0.12.12", "@react-navigation/native": "^6.0.8", "react-redux": "^7.2.4", "redux": "^4.1.0" @@ -150,7 +150,7 @@ "pod-install": "^0.1.0", "prettier": "^2.0.5", "react": "18.2.0", - "react-native": "0.71.19", + "react-native": "0.73.11", "react-native-builder-bob": "^0.21.2", "react-native-image-picker": "^7.1.2", "release-it": "^15.0.0", @@ -158,19 +158,19 @@ }, "peerDependencies": { "@100mslive/react-native-hms": "1.11.0", - "@react-native-community/blur": "^4.3.2", - "@react-native-masked-view/masked-view": "^0.2.9", - "@shopify/flash-list": "^1.4.3", - "lottie-react-native": "5.1.6", + "@react-native-community/blur": "^4.4.0", + "@react-native-masked-view/masked-view": "^0.3.0", + "@shopify/flash-list": "^1.7.0", + "lottie-react-native": ">=7.0.0", "react": "*", - "react-native": "*", - "react-native-gesture-handler": "~2.15.0", - "react-native-linear-gradient": "^2.7.3", + "react-native": ">=0.77.3", + "react-native-gesture-handler": ">=2.22.0", + "react-native-linear-gradient": "^2.8.0", "react-native-modal": "^13.0.1", - "react-native-reanimated": ">=2.17.0", - "react-native-safe-area-context": "^3.3.0", + "react-native-reanimated": ">=3.0.0", + "react-native-safe-area-context": "^5.0.0", "react-native-simple-toast": "^1.1.3", - "react-native-webview": "^13.8.7" + "react-native-webview": "^13.12.0" }, "additionalDependencies": { "@100mslive/react-native-video-plugin": "1.0.0", diff --git a/packages/react-native-room-kit/src/components/AnimatedHLSFooter.tsx b/packages/react-native-room-kit/src/components/AnimatedHLSFooter.tsx index 8c7c715dd..81405da29 100644 --- a/packages/react-native-room-kit/src/components/AnimatedHLSFooter.tsx +++ b/packages/react-native-room-kit/src/components/AnimatedHLSFooter.tsx @@ -4,13 +4,13 @@ import Animated, { interpolate, useAnimatedStyle, } from 'react-native-reanimated'; -import type { SharedValue } from 'react-native-reanimated'; +import type { SharedValue, AnimatedStyle } from 'react-native-reanimated'; import { useFooterHeight } from './Footer'; interface AnimatedHLSFooterProps { offset: SharedValue; - style?: StyleProp>>; + style?: StyleProp>; } export const AnimatedHLSFooter: React.FC = ({ diff --git a/packages/react-native-room-kit/src/components/HLSManageChatTextInput.tsx b/packages/react-native-room-kit/src/components/HLSManageChatTextInput.tsx index 0ca08bf00..ff9883790 100644 --- a/packages/react-native-room-kit/src/components/HLSManageChatTextInput.tsx +++ b/packages/react-native-room-kit/src/components/HLSManageChatTextInput.tsx @@ -39,7 +39,7 @@ export const HLSManageChatTextInput = () => { const keyboardAvoidingStyles = React.useMemo( () => ({ active: { width: chatWrapperConstraints.width - 32 }, - inactive: { width: '100%' }, + inactive: { width: '100%' as const }, }), [chatWrapperConstraints] ); diff --git a/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.android.tsx b/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.android.tsx index 718570b77..0128801b7 100644 --- a/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.android.tsx +++ b/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.android.tsx @@ -1,9 +1,10 @@ import * as React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import Animated from 'react-native-reanimated'; // useDerivedValue, // useAnimatedStyle, // useAnimatedKeyboard, +import type { AnimatedStyle } from 'react-native-reanimated'; export interface HMSKeyboardAvoidingViewProps { - style?: StyleProp>>; + style?: StyleProp>; bottomOffset?: number; } diff --git a/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.tsx b/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.tsx index 2e49f2ad2..caf19920a 100644 --- a/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.tsx +++ b/packages/react-native-room-kit/src/components/HMSKeyboardAvoidingView.tsx @@ -6,12 +6,12 @@ import Animated, { useAnimatedStyle, useDerivedValue, } from 'react-native-reanimated'; -import type { SharedValue } from 'react-native-reanimated'; +import type { SharedValue, AnimatedStyle } from 'react-native-reanimated'; import { useKeyboardState } from '../hooks-util'; export interface HMSKeyboardAvoidingViewProps { - style?: StyleProp>>; + style?: StyleProp>; styleWhenInactive?: ViewStyle; styleWhenActive?: ViewStyle; bottomOffset?: number | SharedValue; diff --git a/packages/react-native-room-kit/src/components/TilesContainer.tsx b/packages/react-native-room-kit/src/components/TilesContainer.tsx index 397588fa0..69e5c067a 100644 --- a/packages/react-native-room-kit/src/components/TilesContainer.tsx +++ b/packages/react-native-room-kit/src/components/TilesContainer.tsx @@ -131,17 +131,29 @@ export { TilesContainer }; // Utility Functions -const oneTileStyle = { width: '100%', height: '100%' }; // 1 Column Layout -const twoTileStyle = { width: '100%', height: '49.7222%' }; // 1 Column Layout -const threeTileStyle = { width: '100%', height: '33%' }; // 1 Column Layout +const oneTileStyle = { width: '100%' as const, height: '100%' as const }; // 1 Column Layout +const twoTileStyle = { width: '100%' as const, height: '49.7222%' as const }; // 1 Column Layout +const threeTileStyle = { width: '100%' as const, height: '33%' as const }; // 1 Column Layout -const fourTileStyle = { width: '49.5%', height: '100%' }; // Grid Layout when Width and Height has no-correlatiom -const fiveAndSixTileStyle = { width: '49.5%', aspectRatio: 1 }; // Grid Layout when width and Height as fixed aspectRatio +const fourTileStyle = { width: '49.5%' as const, height: '100%' as const }; // Grid Layout when Width and Height has no-correlatiom +const fiveAndSixTileStyle = { width: '49.5%' as const, aspectRatio: 1 }; // Grid Layout when width and Height as fixed aspectRatio -const oneTileStyleLandscape = { width: '100%', height: '100%' }; -const twoTileStyleLandscape = { width: '49.7222%', height: '100%' }; -const threeTileStyleLandscape = { width: '33%', height: '100%' }; -const fourTileStyleLandscape = { width: '50%', height: '50%' }; +const oneTileStyleLandscape = { + width: '100%' as const, + height: '100%' as const, +}; +const twoTileStyleLandscape = { + width: '49.7222%' as const, + height: '100%' as const, +}; +const threeTileStyleLandscape = { + width: '33%' as const, + height: '100%' as const, +}; +const fourTileStyleLandscape = { + width: '50%' as const, + height: '50%' as const, +}; function computeTileWidthAndHeight( totalTiles: number, @@ -166,7 +178,10 @@ function computeTileWidthAndHeight( twoTileStyleLandscape, threeTileStyleLandscape, fourTileStyleLandscape, - ][Math.min(totalTiles - 1, 3)] || { width: '100%', height: '100%' } + ][Math.min(totalTiles - 1, 3)] || { + width: '100%' as const, + height: '100%' as const, + } ); } @@ -181,6 +196,9 @@ function computeTileWidthAndHeight( threeTileStyle, fourTileStyle, fiveAndSixTileStyle, - ][Math.min(totalTiles - 1, 4)] || { width: '100%', height: '100%' } + ][Math.min(totalTiles - 1, 4)] || { + width: '100%' as const, + height: '100%' as const, + } ); } diff --git a/packages/react-native-room-kit/src/components/VirtualBackgroundModalContent.tsx b/packages/react-native-room-kit/src/components/VirtualBackgroundModalContent.tsx index 2f9cff566..7030ff3b5 100644 --- a/packages/react-native-room-kit/src/components/VirtualBackgroundModalContent.tsx +++ b/packages/react-native-room-kit/src/components/VirtualBackgroundModalContent.tsx @@ -8,11 +8,12 @@ import { TouchableOpacity, ActivityIndicator, } from 'react-native'; -import type { ImageRequireSource } from 'react-native'; +import type { ImageRequireSource, ImageURISource } from 'react-native'; import { useDispatch, useSelector } from 'react-redux'; import { HMSTrackType, HMSVideoViewMode } from '@100mslive/react-native-hms'; import type { HMSVirtualBackgroundPlugin } from '../modules/videoPluginWrapper'; import { ImagePicker } from '../modules/imagePickerWrapper'; +import { selectLayoutConfigForRole } from '../hooks-util-selectors'; import { BottomSheet } from './BottomSheet'; import { @@ -54,6 +55,20 @@ export const VirtualBackgroundModalContent: React.FC< ); const disableAutoPip = useDisableAutoPip(); + // Get layout config for virtual background images + const layoutConfig = useSelector((state: RootState) => { + try { + const currentRole = state.hmsStates.localPeer?.role || null; + return selectLayoutConfigForRole( + state.hmsStates.layoutConfig, + currentRole + ); + } catch (error) { + console.warn('[VirtualBackground] Error selecting layout config:', error); + return null; + } + }); + const hmsRoomStyles = useHMSRoomStyleSheet((theme, typography) => ({ semiBoldSurfaceHigh: { color: theme.palette.on_surface_high, @@ -181,16 +196,91 @@ export const VirtualBackgroundModalContent: React.FC< try { if (videoPlugin) { setShowLoading(true); + console.log( + '[VirtualBackground] Setting background with asset:', + JSON.stringify(asset.src, null, 2) + ); + + // Check if it's a remote URL that needs dimensions + const isRemoteURL = + typeof asset.src === 'object' && + 'uri' in asset.src && + asset.src.uri && + (asset.src.uri.startsWith('http://') || + asset.src.uri.startsWith('https://')); + + let imageSource = asset.src; + + // For remote URLs, get dimensions if not already present + if (isRemoteURL) { + const src = asset.src as ImageURISource; + + // Check if width and height are already present + if (!src.width || !src.height) { + console.log( + '[VirtualBackground] Getting dimensions for remote URL:', + src.uri + ); + + try { + // Use Image.getSize to get dimensions from remote URL + const dimensions = await new Promise<{ + width: number; + height: number; + }>((resolve, reject) => { + Image.getSize( + src.uri!, + (width, height) => resolve({ width, height }), + (error) => reject(error) + ); + }); + + console.log('[VirtualBackground] Got dimensions:', dimensions); + + // Create new source with dimensions + imageSource = { + uri: src.uri, + width: dimensions.width, + height: dimensions.height, + }; + } catch (dimensionError) { + console.error( + '[VirtualBackground] Failed to get image dimensions:', + dimensionError + ); + // Continue with original source, might still work + } + } + } + if (selectedVirtualBG === null) { await videoPlugin.enable(); } - await videoPlugin.setBackground(asset.src); + + console.log( + '[VirtualBackground] Calling setBackground with source:', + JSON.stringify(imageSource, null, 2) + ); + await videoPlugin.setBackground(imageSource); + setShowLoading(false); dispatch(setSelectedVirtualBackground(asset.label)); + console.log( + '[VirtualBackground] Successfully set background:', + asset.label + ); } } catch (error) { setShowLoading(false); - console.error('Error setting virtual background', error); + console.error( + '[VirtualBackground] Error setting virtual background for:', + asset.label + ); + console.error( + '[VirtualBackground] Asset source:', + JSON.stringify(asset.src, null, 2) + ); + console.error('[VirtualBackground] Error details:', error); } }; @@ -201,6 +291,71 @@ export const VirtualBackgroundModalContent: React.FC< localPeer.videoTrack.type === HMSTrackType.VIDEO && !isLocalVideoMuted; + // Memoize backgrounds from layout config + const configBackgrounds = React.useMemo(() => { + const bgArray: Array<{ + label: string; + src: ImageRequireSource | { uri: string }; + }> = []; + + try { + // Add virtual background images from layout config + if (!layoutConfig) { + console.log('[VirtualBackground] No layout config available'); + return bgArray; + } + + const virtualBackgroundConfig = + layoutConfig?.screens?.conferencing?.default?.elements + ?.virtual_background; + + if (!virtualBackgroundConfig) { + console.log( + '[VirtualBackground] No virtual background config in layout' + ); + return bgArray; + } + + const backgroundMediaList = + virtualBackgroundConfig?.background_media || []; + + console.log( + '[VirtualBackground] Found', + backgroundMediaList.length, + 'background images in config' + ); + + // Process each background image + backgroundMediaList.forEach((media, index) => { + if (media?.url) { + // Extract filename from URL or use a generic label + const urlParts = media.url.split('/'); + const filename = + urlParts[urlParts.length - 1] || `Background ${index + 1}`; + + console.log( + `[VirtualBackground] Adding image ${index + 1}:`, + media.url + ); + + // Add the image - remote URLs will be handled with Image.getSize on demand + bgArray.push({ + label: filename, + src: { uri: media.url }, + }); + } + }); + } catch (error) { + console.error( + '[VirtualBackground] Error processing background images:', + error + ); + } + + return bgArray; + }, [layoutConfig]); + + // Combine config backgrounds with upload button const backgrounds: Array< | { icon: React.JSX.Element; @@ -212,21 +367,20 @@ export const VirtualBackgroundModalContent: React.FC< icon?: undefined; onPress?: undefined; label: string; - src: ImageRequireSource; + src: ImageRequireSource | { uri: string }; } - > = []; - - if (ImagePicker) { - // backgrounds.push({ - // label: 'Camera', - // onPress: handleCameraPress, - // }); - backgrounds.push({ - icon: , - label: 'Upload', - onPress: handlePhotoLibraryPress, - }); - } + > = [ + ...configBackgrounds, + ...(ImagePicker + ? [ + { + icon: , + label: 'Upload', + onPress: handlePhotoLibraryPress, + }, + ] + : []), + ]; return ( diff --git a/packages/react-native-room-kit/src/hooks-util.ts b/packages/react-native-room-kit/src/hooks-util.ts index 8b349e38a..4d107f0b1 100644 --- a/packages/react-native-room-kit/src/hooks-util.ts +++ b/packages/react-native-room-kit/src/hooks-util.ts @@ -2666,14 +2666,7 @@ export const useBackButtonPress = () => { ); return () => { - if (typeof subscription.remove === 'function') { - subscription.remove(); - } else { - BackHandler.removeEventListener( - 'hardwareBackPress', - backPressHandler - ); - } + subscription.remove(); }; } }, [handleBackPress, handleModalVisibleType]); @@ -3030,16 +3023,8 @@ export const useKeyboardState = () => { if (didHideTimeoutId !== null) { clearTimeout(didHideTimeoutId); } - if ('remove' in didShowSubscription) { - didShowSubscription.remove(); - } else { - Keyboard.removeSubscription(didShowSubscription); - } - if ('remove' in didHideSubscription) { - didHideSubscription.remove(); - } else { - Keyboard.removeSubscription(didHideSubscription); - } + didShowSubscription.remove(); + didHideSubscription.remove(); }; }, []); diff --git a/release-apps.sh b/release-apps.sh index 716ab00e7..0b31cf7a5 100644 --- a/release-apps.sh +++ b/release-apps.sh @@ -1,72 +1,688 @@ -#!/bin/sh -#alias rel='sh -x release-apps.sh' +#!/bin/bash +# +# Release script for React Native Room Kit Example Apps +# Builds and distributes Android and iOS apps using Fastlane +# +# Usage: ./release-apps.sh [--android-only] [--ios-only] [--dry-run] [--no-commit] +# -set -e -set -x +set -e # Exit on error +set -o pipefail # Catch errors in pipes + +# ============================================================================ +# CONFIGURATION +# ============================================================================ + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +PROJECT_DIR="${SCRIPT_DIR}/packages/react-native-room-kit" +EXAMPLE_DIR="${PROJECT_DIR}/example" +BUILD_GRADLE="${EXAMPLE_DIR}/android/app/build.gradle" +IOS_PROJECT="${EXAMPLE_DIR}/ios/RNExample.xcodeproj" + +# Build flags +BUILD_ANDROID=true +BUILD_IOS=true +DRY_RUN=false +SKIP_COMMIT=false + +# ============================================================================ +# COLORS AND LOGGING +# ============================================================================ + +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +NC='\033[0m' # No Color + +log_info() { + echo -e "${BLUE}[INFO]${NC} $(date '+%H:%M:%S') - $1" +} + +log_success() { + echo -e "${GREEN}[SUCCESS]${NC} $(date '+%H:%M:%S') - $1" +} + +log_warn() { + echo -e "${YELLOW}[WARN]${NC} $(date '+%H:%M:%S') - $1" +} + +log_error() { + echo -e "${RED}[ERROR]${NC} $(date '+%H:%M:%S') - $1" +} + +# ============================================================================ +# CLEANUP AND ERROR HANDLING +# ============================================================================ + +cleanup() { + local exit_code=$? + if [ $exit_code -ne 0 ]; then + log_error "Script failed with exit code $exit_code" + log_info "Cleaning up background processes..." + jobs -p | xargs -r kill 2>/dev/null || true + fi +} + +trap cleanup EXIT + +# ============================================================================ +# VALIDATION FUNCTIONS +# ============================================================================ + +check_requirements() { + log_info "Checking requirements..." + + local missing_tools=() + + command -v git >/dev/null 2>&1 || missing_tools+=("git") + command -v npm >/dev/null 2>&1 || missing_tools+=("npm") + command -v bundle >/dev/null 2>&1 || missing_tools+=("bundle (Ruby)") + + if [ "$BUILD_IOS" = true ]; then + command -v pod >/dev/null 2>&1 || missing_tools+=("pod (CocoaPods)") + fi + + if [ ${#missing_tools[@]} -ne 0 ]; then + log_error "Missing required tools: ${missing_tools[*]}" + exit 1 + fi + + log_success "All required tools are installed" +} + +validate_directories() { + log_info "Validating directory structure..." + + if [ ! -d "$PROJECT_DIR" ]; then + log_error "Project directory not found: $PROJECT_DIR" + exit 1 + fi + + if [ ! -d "$EXAMPLE_DIR" ]; then + log_error "Example directory not found: $EXAMPLE_DIR" + exit 1 + fi + + if [ "$BUILD_ANDROID" = true ] && [ ! -d "${EXAMPLE_DIR}/android" ]; then + log_error "Android directory not found: ${EXAMPLE_DIR}/android" + exit 1 + fi + + if [ "$BUILD_IOS" = true ] && [ ! -d "${EXAMPLE_DIR}/ios" ]; then + log_error "iOS directory not found: ${EXAMPLE_DIR}/ios" + exit 1 + fi + + log_success "Directory structure validated" +} + +check_git_status() { + log_info "Checking git status..." + + pushd "$PROJECT_DIR" >/dev/null + + if [ "$DRY_RUN" = false ] && [ "$SKIP_COMMIT" = false ]; then + if ! git diff-index --quiet HEAD -- 2>/dev/null; then + log_warn "You have uncommitted changes" + log_info "Uncommitted files:" + git status --short + read -p "Continue anyway? (y/N): " -n 1 -r + echo + if [[ ! $REPLY =~ ^[Yy]$ ]]; then + log_info "Aborted by user" + exit 0 + fi + fi + fi + + popd >/dev/null +} + +# ============================================================================ +# MAIN FUNCTIONS +# ============================================================================ perform_npm_actions() { - cd ./packages/react-native-room-kit + log_info "Starting npm installation..." + + pushd "$PROJECT_DIR" >/dev/null + + log_info "Git pull in project directory..." + if [ "$DRY_RUN" = false ]; then + git pull --verbose || { + log_error "Git pull failed" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: git pull --verbose" + fi + + log_info "Installing project dependencies..." + if [ "$DRY_RUN" = false ]; then + npm install || { + log_error "npm install failed in project directory" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: npm install" + fi - git pull --verbose + pushd example >/dev/null - npm install + log_info "Installing example dependencies..." + if [ "$DRY_RUN" = false ]; then + npm install || { + log_error "npm install failed in example directory" + popd >/dev/null + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: npm install" + fi - cd ./example + popd >/dev/null + popd >/dev/null - npm install + log_success "npm actions completed" + return 0 +} + +bump_android_version() { + log_info "Bumping Android version..." + + pushd "${EXAMPLE_DIR}/android" >/dev/null + + log_info "Installing Ruby dependencies..." + if [ "$DRY_RUN" = false ]; then + bundle install --verbose || { + log_error "bundle install failed for Android" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: bundle install --verbose" + fi + + if [ "$DRY_RUN" = false ]; then + bundle exec fastlane bump_version || { + log_error "Fastlane bump_version failed for Android" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: bundle exec fastlane bump_version" + fi + + popd >/dev/null + log_success "Android version bump completed" + return 0 } release_android() { - cd ./android + log_info "Starting Android distribution..." + + pushd "${EXAMPLE_DIR}/android" >/dev/null + + log_info "Running Fastlane distribute_app_only for Android..." + if [ "$DRY_RUN" = false ]; then + bundle exec fastlane distribute_app_only || { + log_error "Fastlane distribute_app_only failed for Android" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: bundle exec fastlane distribute_app_only" + fi + + popd >/dev/null + + log_success "Android distribution completed" + return 0 +} + +bump_ios_version() { + log_info "Bumping iOS version..." + + pushd "${EXAMPLE_DIR}/ios" >/dev/null + + log_info "Installing CocoaPods dependencies..." + if [ "$DRY_RUN" = false ]; then + pod install --verbose || { + log_error "pod install failed" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: pod install --verbose" + fi + + log_info "Installing Ruby dependencies..." + if [ "$DRY_RUN" = false ]; then + bundle install --verbose || { + log_error "bundle install failed for iOS" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: bundle install --verbose" + fi + + if [ "$DRY_RUN" = false ]; then + bundle exec fastlane bump_version || { + log_error "Fastlane bump_version failed for iOS" + popd >/dev/null + return 1 + } + else + log_info "[DRY RUN] Would run: bundle exec fastlane bump_version" + fi + + popd >/dev/null + log_success "iOS version bump completed" + return 0 +} + +release_ios() { + log_info "Starting iOS distribution to Firebase and TestFlight..." + + pushd "${EXAMPLE_DIR}/ios" >/dev/null + + local firebase_failed=false + local testflight_failed=false + + if [ "$DRY_RUN" = false ]; then + # Run Firebase distribution first + log_info "Running Firebase distribution..." + if ! bundle exec fastlane distribute_firebase_only; then + log_error "Firebase distribution failed" + firebase_failed=true + else + log_success "Firebase distribution completed" + fi + + # Run TestFlight distribution second + log_info "Running TestFlight distribution..." + if ! bundle exec fastlane distribute_testflight_only; then + log_error "TestFlight distribution failed" + testflight_failed=true + else + log_success "TestFlight distribution completed" + fi + + # Check results + if [ "$firebase_failed" = true ] && [ "$testflight_failed" = true ]; then + log_error "Both Firebase and TestFlight distributions failed" + popd >/dev/null + return 1 + elif [ "$firebase_failed" = true ]; then + log_warn "Firebase distribution failed, but TestFlight succeeded" + elif [ "$testflight_failed" = true ]; then + log_warn "TestFlight distribution failed, but Firebase succeeded" + else + log_success "Both Firebase and TestFlight distributions completed successfully" + fi + + # Post Slack notification + log_info "Posting Slack notification..." + bundle exec fastlane post_message_on_slack || { + log_warn "Slack notification failed (non-fatal)" + } + else + log_info "[DRY RUN] Would run: bundle exec fastlane distribute_firebase_only" + log_info "[DRY RUN] Would run: bundle exec fastlane distribute_testflight_only" + log_info "[DRY RUN] Would run: bundle exec fastlane post_message_on_slack" + fi + + popd >/dev/null + + log_success "iOS release completed" + return 0 +} + +get_android_version_info() { + local build_gradle="$1" + local version_code="" + local version_name="" - bundle install --verbose + while IFS= read -r line; do + if [[ $line =~ ^[[:space:]]*versionCode[[:space:]]+([0-9]+) ]]; then + version_code="${BASH_REMATCH[1]}" + elif [[ $line =~ ^[[:space:]]*versionName[[:space:]]+\"([0-9]+\.[0-9]+\.[0-9]+)\" ]]; then + version_name="${BASH_REMATCH[1]}" + fi + done <"$build_gradle" + + if [ -z "$version_code" ] || [ -z "$version_name" ]; then + log_error "Failed to parse version info from build.gradle" + return 1 + fi - bundle exec fastlane distribute_app + echo "${version_name}:${version_code}" + return 0 } -release_iOS() { - cd ./ios +get_ios_version_info() { + local info_plist="${EXAMPLE_DIR}/ios/RNExample/Info.plist" + local version="" + local build="" - pod install --verbose + if [ ! -f "$info_plist" ]; then + log_error "Info.plist not found at: $info_plist" + return 1 + fi - bundle install --verbose + # Use /usr/libexec/PlistBuddy to read plist values (macOS built-in) + if command -v /usr/libexec/PlistBuddy >/dev/null 2>&1; then + version=$(/usr/libexec/PlistBuddy -c "Print :CFBundleShortVersionString" "$info_plist" 2>/dev/null) + build=$(/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" "$info_plist" 2>/dev/null) + else + # Fallback: parse with grep/sed + version=$(grep -A 1 "CFBundleShortVersionString" "$info_plist" | grep "" | sed -E 's/.*(.*)<\/string>.*/\1/' | tr -d '[:space:]') + build=$(grep -A 1 "CFBundleVersion" "$info_plist" | grep "" | sed -E 's/.*(.*)<\/string>.*/\1/' | tr -d '[:space:]') + fi - bundle exec fastlane distribute_app + if [ -z "$version" ] || [ -z "$build" ]; then + log_error "Failed to get iOS version info from Info.plist" + return 1 + fi + + echo "${version}:${build}" + return 0 } perform_git_actions() { - cd .. + log_info "Starting git actions..." + + pushd "$PROJECT_DIR" >/dev/null + + # Get version info after builds complete (Fastlane updates these during build) + local android_version="" + local ios_version="" + local commit_message="" + + if [ "$BUILD_ANDROID" = true ]; then + android_version=$(get_android_version_info "${BUILD_GRADLE}") || { + log_error "Failed to get Android version info" + popd >/dev/null + return 1 + } + log_info "Android version: $android_version" + fi + + if [ "$BUILD_IOS" = true ]; then + ios_version=$(get_ios_version_info) || { + log_error "Failed to get iOS version info" + popd >/dev/null + return 1 + } + log_info "iOS version: $ios_version" + fi + + # Build commit message + if [ "$BUILD_ANDROID" = true ] && [ "$BUILD_IOS" = true ]; then + local android_ver="${android_version%:*}" + local android_build="${android_version#*:}" + commit_message="released sample apps - Android ${android_ver} (${android_build}) ⚛️" + elif [ "$BUILD_ANDROID" = true ]; then + local android_ver="${android_version%:*}" + local android_build="${android_version#*:}" + commit_message="released sample app - Android ${android_ver} (${android_build}) 🤖" + elif [ "$BUILD_IOS" = true ]; then + local ios_ver="${ios_version%:*}" + local ios_build="${ios_version#*:}" + commit_message="released sample app - iOS ${ios_ver} (${ios_build}) 🍎" + fi - while read line; do - if [[ $line =~ ^versionCode.[0-9]+$ ]]; then - buildNumber=$(echo $line | grep -o -E '[0-9]+') - elif [[ $line =~ ^versionName.*$ ]]; then - versionCode=$(echo $line | grep -o -E '[0-9].[0-9].[0-9]+') + log_info "Staging changed files..." + if [ "$DRY_RUN" = false ]; then + # Add Android files if built + if [ "$BUILD_ANDROID" = true ]; then + git add example/android/app/build.gradle 2>/dev/null || log_warn "No changes in Android build.gradle" fi - done /dev/null || log_warn "No changes in Podfile.lock" + git add example/ios/RNExample/Info.plist 2>/dev/null || log_warn "No changes in Info.plist" + git add example/ios/RNExample.xcodeproj/project.pbxproj 2>/dev/null || log_warn "No changes in project.pbxproj" + fi + + # Add updated changelog file with version info + git add example/ExampleAppChangelog.txt 2>/dev/null || log_warn "No changes in changelog" - git commit -m "released sample app version $versionCode ($buildNumber) ⚛️" + # Check if there are staged changes + if git diff --cached --quiet; then + log_warn "No changes to commit" + else + log_info "Committing changes..." + git commit -m "$commit_message" || { + log_error "Git commit failed" + popd >/dev/null + return 1 + } + + log_info "Pushing to remote..." + git push --verbose || { + log_error "Git push failed" + popd >/dev/null + return 1 + } + fi + else + log_info "[DRY RUN] Would commit: $commit_message" + log_info "[DRY RUN] Would push to remote" + fi - git push --verbose + popd >/dev/null + + log_success "Git actions completed" + return 0 } -perform_npm_actions -P1=$! +# ============================================================================ +# ARGUMENT PARSING +# ============================================================================ + +parse_arguments() { + while [[ $# -gt 0 ]]; do + case $1 in + --android-only) + BUILD_IOS=false + log_info "Building Android only" + shift + ;; + --ios-only) + BUILD_ANDROID=false + log_info "Building iOS only" + shift + ;; + --dry-run) + DRY_RUN=true + log_info "Dry run mode enabled" + shift + ;; + --no-commit) + SKIP_COMMIT=true + log_info "Skipping git commit" + shift + ;; + -h | --help) + echo "Usage: $0 [OPTIONS]" + echo "" + echo "Options:" + echo " --android-only Build and release Android only" + echo " --ios-only Build and release iOS only" + echo " --dry-run Show what would be done without executing" + echo " --no-commit Skip git commit and push" + echo " -h, --help Show this help message" + exit 0 + ;; + *) + log_error "Unknown option: $1" + echo "Use --help for usage information" + exit 1 + ;; + esac + done +} -wait $P1 -release_android & -P2=$! +# ============================================================================ +# MAIN EXECUTION +# ============================================================================ -release_iOS & -P3=$! +main() { + log_info "==========================================" + log_info "React Native Room Kit Release Script" + log_info "==========================================" + echo "" -wait $P2 $P3 + # Parse command line arguments + parse_arguments "$@" -perform_git_actions + # Pre-flight checks + check_requirements + validate_directories + check_git_status + + echo "" + log_info "Starting release process..." + echo "" + + # Step 1: Perform npm actions in background + log_info "[1/4] Running npm install..." + perform_npm_actions & + npm_pid=$! + + # Wait for npm actions to complete + if ! wait $npm_pid; then + log_error "npm actions failed" + exit 1 + fi + + echo "" + log_info "[2/5] Bumping versions..." + echo "" + + # Step 2: Bump versions for Android & iOS in parallel + local android_bump_pid="" + local ios_bump_pid="" + + if [ "$BUILD_ANDROID" = true ]; then + bump_android_version & + android_bump_pid=$! + log_info "Android version bump started (PID: $android_bump_pid)" + fi + + if [ "$BUILD_IOS" = true ]; then + bump_ios_version & + ios_bump_pid=$! + log_info "iOS version bump started (PID: $ios_bump_pid)" + fi + + # Wait for version bumps to complete + local bump_failed=false + + if [ -n "$android_bump_pid" ]; then + if ! wait $android_bump_pid; then + log_error "Android version bump failed" + bump_failed=true + fi + fi + + if [ -n "$ios_bump_pid" ]; then + if ! wait $ios_bump_pid; then + log_error "iOS version bump failed" + bump_failed=true + fi + fi + + if [ "$bump_failed" = true ]; then + log_error "Version bump failed" + exit 1 + fi + + echo "" + log_info "[3/5] Updating changelog with bumped versions..." + if [ "$DRY_RUN" = false ]; then + node "${SCRIPT_DIR}/scripts/update-changelog-versions.js" || { + log_warn "Failed to update changelog versions (non-fatal, continuing...)" + } + else + log_info "[DRY RUN] Would run: node scripts/update-changelog-versions.js" + fi + echo "" + + echo "" + log_info "[4/5] Building and distributing apps..." + echo "" + + # Step 4: Build and release Android & iOS in parallel + local android_pid="" + local ios_pid="" + + if [ "$BUILD_ANDROID" = true ]; then + release_android & + android_pid=$! + log_info "Android distribution started (PID: $android_pid)" + fi + + if [ "$BUILD_IOS" = true ]; then + release_ios & + ios_pid=$! + log_info "iOS distribution started (PID: $ios_pid)" + fi + + # Wait for distributions to complete + local build_failed=false + + if [ -n "$android_pid" ]; then + if ! wait $android_pid; then + log_error "Android distribution failed" + build_failed=true + fi + fi + + if [ -n "$ios_pid" ]; then + if ! wait $ios_pid; then + log_error "iOS distribution failed" + build_failed=true + fi + fi + + if [ "$build_failed" = true ]; then + log_error "One or more distributions failed" + exit 1 + fi + + echo "" + log_info "All distributions completed successfully" + echo "" + + # Step 5: Perform git actions + if [ "$SKIP_COMMIT" = false ]; then + log_info "[5/5] Committing and pushing changes..." + perform_git_actions || { + log_error "Git actions failed" + exit 1 + } + else + log_info "[5/5] Skipping git commit (--no-commit flag)" + fi + + echo "" + log_success "==========================================" + log_success "Release completed successfully! 🎉" + log_success "==========================================" + + # Optional: macOS voice notification + if command -v say >/dev/null 2>&1; then + say "Release completed" & + fi +} -say done +# Run main function +main "$@" diff --git a/sample-apps/HMSReactNativeSample/README.md b/sample-apps/HMSReactNativeSample/README.md index aa5ab00c9..04956b0df 100644 --- a/sample-apps/HMSReactNativeSample/README.md +++ b/sample-apps/HMSReactNativeSample/README.md @@ -1,15 +1,47 @@ -# 100ms-react-native-sample +# 100ms React Native Sample App -A React Native app which has the fully featured 100ms app UI along with the Core SDK +A React Native app which has the fully featured 100ms app UI along with the Core SDK. -Ensure you are using "JDK 11" to build the android app. -You can check your JDK version as mentioned below - +## Requirements -1. If you are building the app using cli, run `java --version` in terminal. -2. If you are building the app using Android Studio -3. Open Android Studio > Settings > Build, Execution, Deployment > Build Tools > Gradle -4. Search for "Gradle JDK" field, "JDK 11" should be selected as value +### Minimum Configuration -The Google Drive Link below contains all files including node_modules, Git ignored files, etc +- React Native 0.73.0 or above +- Java 17 or above +- Android API level 24 or above +- Xcode 14 or above +- iOS 16 or above +- Node.js 22 or above + +### Recommended Configuration + +- React Native 0.77.3 or above +- Java 17 or above +- Android API level 35 or above +- Xcode 15 or above +- iOS 16 or above +- Node.js 22 or above + +## Setup + +Ensure you are using **Java 17** to build the android app. +You can check your JDK version as mentioned below: + +1. If you are building the app using CLI, run `java --version` in terminal. +2. If you are building the app using Android Studio: + - Open Android Studio > Settings > Build, Execution, Deployment > Build Tools > Gradle + - Search for "Gradle JDK" field, "JDK 17" should be selected as value + +## Build Instructions + +1. Clone the repository +2. Ensure Node.js version 22 is installed (`node --version`) +3. Run `npm install` in the project root +4. For Android: Run `npx react-native run-android` +5. For iOS: + - Navigate to `ios` folder and run `pod install` + - Run `npx react-native run-ios` + +The Google Drive Link below contains all files including node_modules, Git ignored files, etc: - https://drive.google.com/file/d/1XtpBZmTT20pJz3-2KnCbieFHetqnmpCa/ diff --git a/sample-apps/HMSReactNativeSample/package-lock.json b/sample-apps/HMSReactNativeSample/package-lock.json index 85c2a4984..dc108f448 100644 --- a/sample-apps/HMSReactNativeSample/package-lock.json +++ b/sample-apps/HMSReactNativeSample/package-lock.json @@ -85,73 +85,18 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/code-frame/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/code-frame/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/@babel/code-frame/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/@babel/compat-data": { "version": "7.22.9", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz", @@ -471,17 +416,17 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "engines": { "node": ">=6.9.0" } @@ -510,92 +455,24 @@ } }, "node_modules/@babel/helpers": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz", - "integrity": "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==", - "license": "MIT", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dependencies": { - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.6", - "@babel/types": "^7.22.5" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "dependencies": { - "has-flag": "^3.0.0" + "@babel/types": "^7.28.5" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/parser": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", - "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", "bin": { "parser": "bin/babel-parser.js" }, @@ -2148,25 +2025,21 @@ "license": "MIT" }, "node_modules/@babel/runtime": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz", - "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==", - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -2193,13 +2066,12 @@ } }, "node_modules/@babel/types": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", - "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -4110,9 +3982,9 @@ } }, "node_modules/babel-plugin-module-resolver/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "dev": true, "dependencies": { "balanced-match": "^1.0.0" @@ -4365,22 +4237,20 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "license": "MIT", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "license": "MIT", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -4441,10 +4311,9 @@ "license": "MIT" }, "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "license": "MIT", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } @@ -4483,6 +4352,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -4793,17 +4675,16 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "license": "MIT", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { @@ -4825,6 +4706,33 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -4941,11 +4849,10 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, - "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -5208,7 +5115,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "license": "MIT", "engines": { "node": ">= 0.8" } @@ -5217,7 +5123,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -5279,6 +5184,20 @@ "node": ">=8" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -5438,16 +5357,46 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dev": true, - "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -5958,7 +5907,6 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -5997,10 +5945,9 @@ } }, "node_modules/execa/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "license": "MIT", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -6234,10 +6181,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "license": "MIT", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -6456,15 +6402,16 @@ } }, "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", "dev": true, - "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" }, "engines": { "node": ">= 6" @@ -6486,7 +6433,6 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -6525,10 +6471,12 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "license": "MIT" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/function.prototype.name": { "version": "1.1.5", @@ -6585,16 +6533,24 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, - "license": "MIT", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6610,6 +6566,19 @@ "node": ">=8.0.0" } }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/get-stdin": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", @@ -6717,13 +6686,12 @@ } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.1.3" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6801,11 +6769,10 @@ } }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6814,13 +6781,12 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, - "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -6868,6 +6834,18 @@ "node": ">=0.10.0" } }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/hermes-engine": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.9.0.tgz", @@ -6945,7 +6923,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "license": "MIT", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -8676,11 +8653,10 @@ } }, "node_modules/jsdom/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -9021,6 +8997,15 @@ "node": ">=0.10.0" } }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", @@ -9479,12 +9464,11 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "license": "MIT", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -9599,9 +9583,9 @@ "license": "MIT" }, "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "funding": [ { "type": "github", @@ -10101,7 +10085,6 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -10110,10 +10093,9 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "license": "MIT", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", "engines": { "node": ">= 0.8" } @@ -10433,10 +10415,9 @@ "license": "MIT" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "license": "ISC" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -10726,7 +10707,6 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -10754,10 +10734,9 @@ } }, "node_modules/react-devtools-core/node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "license": "MIT", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "engines": { "node": ">=8.3.0" }, @@ -11081,10 +11060,9 @@ } }, "node_modules/react-native/node_modules/ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "license": "MIT", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", "dependencies": { "async-limiter": "~1.0.0" } @@ -11892,10 +11870,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "license": "MIT", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -11919,7 +11896,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -11927,14 +11903,12 @@ "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/send/node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "license": "MIT", "bin": { "mime": "cli.js" }, @@ -11945,8 +11919,7 @@ "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/serialize-error": { "version": "2.1.0", @@ -11958,20 +11931,27 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "license": "MIT", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -12001,8 +11981,7 @@ "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "license": "ISC" + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/shallow-clone": { "version": "3.0.1", @@ -12429,7 +12408,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "license": "MIT", "engines": { "node": ">= 0.8" } @@ -12804,15 +12782,6 @@ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "license": "BSD-3-Clause" }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -12856,7 +12825,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -12868,7 +12836,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "license": "MIT", "engines": { "node": ">=0.12.0" } @@ -12915,7 +12882,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "license": "MIT", "engines": { "node": ">=0.6" } diff --git a/sample-apps/HMSReactNativeSample/yarn.lock b/sample-apps/HMSReactNativeSample/yarn.lock index 1f2d011c5..2939026da 100644 --- a/sample-apps/HMSReactNativeSample/yarn.lock +++ b/sample-apps/HMSReactNativeSample/yarn.lock @@ -22,27 +22,21 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz" - integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== - dependencies: - "@babel/highlight" "^7.22.5" - -"@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" - integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.5", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz" + integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== dependencies: - "@babel/highlight" "^7.23.4" - chalk "^2.4.2" + "@babel/helper-validator-identifier" "^7.27.1" + js-tokens "^4.0.0" + picocolors "^1.1.1" -"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": +"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": version "7.22.9" resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz" integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ== -"@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.12.3", "@babel/core@^7.12.9", "@babel/core@^7.14.0", "@babel/core@^7.7.5": +"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.0.0-0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.12.0", "@babel/core@^7.12.3", "@babel/core@^7.12.9", "@babel/core@^7.13.0", "@babel/core@^7.14.0", "@babel/core@^7.4.0 || ^8.0.0-0 <8.0.0", "@babel/core@^7.7.5": version "7.22.9" resolved "https://registry.npmjs.org/@babel/core/-/core-7.22.9.tgz" integrity sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w== @@ -63,19 +57,9 @@ json5 "^2.2.2" semver "^6.3.1" -"@babel/generator@^7.14.0", "@babel/generator@^7.22.9": - version "7.22.9" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.22.9.tgz" - integrity sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw== - dependencies: - "@babel/types" "^7.22.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/generator@^7.23.6": +"@babel/generator@^7.14.0", "@babel/generator@^7.22.9", "@babel/generator@^7.23.6": version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz" integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== dependencies: "@babel/types" "^7.23.6" @@ -108,7 +92,7 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.9": +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5", "@babel/helper-create-class-features-plugin@^7.22.9": version "7.22.9" resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz" integrity sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ== @@ -123,7 +107,7 @@ "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" -"@babel/helper-create-regexp-features-plugin@^7.22.5": +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": version "7.22.9" resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz" integrity sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw== @@ -143,27 +127,14 @@ lodash.debounce "^4.0.8" resolve "^1.14.2" -"@babel/helper-environment-visitor@^7.22.20": +"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== -"@babel/helper-environment-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz" - integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== - -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== - dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-function-name@^7.23.0": +"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz" integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== dependencies: "@babel/template" "^7.22.15" @@ -208,7 +179,7 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.22.5" resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== @@ -252,25 +223,15 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== - -"@babel/helper-string-parser@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" - integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== +"@babel/helper-string-parser@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz" + integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== -"@babel/helper-validator-identifier@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" - integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== - -"@babel/helper-validator-identifier@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz" - integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== +"@babel/helper-validator-identifier@^7.22.5", "@babel/helper-validator-identifier@^7.27.1", "@babel/helper-validator-identifier@^7.28.5": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz" + integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q== "@babel/helper-validator-option@^7.22.5": version "7.22.5" @@ -287,41 +248,35 @@ "@babel/types" "^7.22.5" "@babel/helpers@^7.22.6": - version "7.22.6" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz" - integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA== + version "7.28.4" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz" + integrity sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w== dependencies: - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.6" - "@babel/types" "^7.22.5" + "@babel/template" "^7.27.2" + "@babel/types" "^7.28.4" -"@babel/highlight@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz" - integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== +"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.7", "@babel/parser@^7.23.6", "@babel/parser@^7.27.2", "@babel/parser@^7.7.0": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz" + integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ== dependencies: - "@babel/helper-validator-identifier" "^7.22.5" - chalk "^2.0.0" - js-tokens "^4.0.0" + "@babel/types" "^7.28.5" -"@babel/highlight@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" - integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz" + integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== dependencies: - "@babel/helper-validator-identifier" "^7.22.20" - chalk "^2.4.2" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7", "@babel/parser@^7.7.0": - version "7.22.7" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz" - integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== + "@babel/helper-plugin-utils" "^7.22.5" -"@babel/parser@^7.22.15", "@babel/parser@^7.23.6": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" - integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz" + integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.5" "@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.1.0": version "7.18.6" @@ -375,6 +330,19 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" "@babel/plugin-syntax-optional-chaining" "^7.8.3" +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" @@ -389,14 +357,21 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.8.3": +"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": version "7.12.13" resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-dynamic-import@^7.0.0": +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== @@ -410,6 +385,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz" @@ -417,7 +399,21 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-import-meta@^7.8.3": +"@babel/plugin-syntax-import-assertions@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz" + integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz" + integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== @@ -438,7 +434,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== @@ -452,7 +448,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.8.3": +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== @@ -480,7 +476,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-top-level-await@^7.8.3": +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": version "7.14.5" resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== @@ -494,14 +497,32 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-arrow-functions@^7.0.0": +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz" integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-to-generator@^7.0.0": +"@babel/plugin-transform-async-generator-functions@^7.22.7": + version "7.22.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz" + integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz" integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== @@ -510,21 +531,38 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-remap-async-to-generator" "^7.22.5" -"@babel/plugin-transform-block-scoped-functions@^7.0.0": +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz" integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.0.0": +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz" integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-classes@^7.0.0": +"@babel/plugin-transform-class-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz" + integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-static-block@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz" + integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.22.6": version "7.22.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz" integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ== @@ -539,7 +577,7 @@ "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.0.0": +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz" integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== @@ -547,14 +585,37 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/template" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.0.0": +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz" integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-exponentiation-operator@^7.0.0": +"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz" + integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-duplicate-keys@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz" + integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dynamic-import@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz" + integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz" integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== @@ -562,6 +623,14 @@ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-export-namespace-from@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz" + integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz" @@ -570,14 +639,14 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-flow" "^7.22.5" -"@babel/plugin-transform-for-of@^7.0.0": +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz" integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-function-name@^7.0.0": +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz" integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== @@ -586,20 +655,44 @@ "@babel/helper-function-name" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-literals@^7.0.0": +"@babel/plugin-transform-json-strings@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz" + integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz" integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-member-expression-literals@^7.0.0": +"@babel/plugin-transform-logical-assignment-operators@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz" + integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz" integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-modules-amd@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz" + integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.1.0", "@babel/plugin-transform-modules-commonjs@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz" @@ -609,6 +702,55 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" +"@babel/plugin-transform-modules-systemjs@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz" + integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== + dependencies: + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + +"@babel/plugin-transform-modules-umd@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz" + integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-new-target@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz" + integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz" + integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz" + integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-transform-object-assign@^7.0.0": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.22.5.tgz" @@ -616,7 +758,18 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-object-super@^7.0.0": +"@babel/plugin-transform-object-rest-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz" + integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== + dependencies: + "@babel/compat-data" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.22.5" + +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz" integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== @@ -624,14 +777,49 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-replace-supers" "^7.22.5" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7": +"@babel/plugin-transform-optional-catch-binding@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz" + integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6": + version "7.22.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz" + integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz" integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-property-literals@^7.0.0": +"@babel/plugin-transform-private-methods@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz" + integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-property-in-object@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz" + integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz" integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== @@ -670,7 +858,7 @@ "@babel/plugin-syntax-jsx" "^7.22.5" "@babel/types" "^7.22.5" -"@babel/plugin-transform-regenerator@^7.0.0": +"@babel/plugin-transform-regenerator@^7.0.0", "@babel/plugin-transform-regenerator@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz" integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== @@ -678,6 +866,13 @@ "@babel/helper-plugin-utils" "^7.22.5" regenerator-transform "^0.15.1" +"@babel/plugin-transform-reserved-words@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz" + integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-transform-runtime@^7.0.0": version "7.22.9" resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.9.tgz" @@ -690,14 +885,14 @@ babel-plugin-polyfill-regenerator "^0.5.1" semver "^6.3.1" -"@babel/plugin-transform-shorthand-properties@^7.0.0": +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz" integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-spread@^7.0.0": +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz" integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== @@ -705,20 +900,27 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.0.0": +"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz" integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-template-literals@^7.0.0": +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz" integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-typeof-symbol@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz" + integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-transform-typescript@^7.22.5", "@babel/plugin-transform-typescript@^7.5.0": version "7.22.9" resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.9.tgz" @@ -729,7 +931,22 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-typescript" "^7.22.5" -"@babel/plugin-transform-unicode-regex@^7.0.0": +"@babel/plugin-transform-unicode-escapes@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz" + integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-property-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz" + integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.22.5": version "7.22.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz" integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== @@ -737,6 +954,100 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-unicode-sets-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz" + integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@^7.1.6": + version "7.22.9" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.9.tgz" + integrity sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.9" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.22.5" + "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.22.5" + "@babel/plugin-transform-async-generator-functions" "^7.22.7" + "@babel/plugin-transform-async-to-generator" "^7.22.5" + "@babel/plugin-transform-block-scoped-functions" "^7.22.5" + "@babel/plugin-transform-block-scoping" "^7.22.5" + "@babel/plugin-transform-class-properties" "^7.22.5" + "@babel/plugin-transform-class-static-block" "^7.22.5" + "@babel/plugin-transform-classes" "^7.22.6" + "@babel/plugin-transform-computed-properties" "^7.22.5" + "@babel/plugin-transform-destructuring" "^7.22.5" + "@babel/plugin-transform-dotall-regex" "^7.22.5" + "@babel/plugin-transform-duplicate-keys" "^7.22.5" + "@babel/plugin-transform-dynamic-import" "^7.22.5" + "@babel/plugin-transform-exponentiation-operator" "^7.22.5" + "@babel/plugin-transform-export-namespace-from" "^7.22.5" + "@babel/plugin-transform-for-of" "^7.22.5" + "@babel/plugin-transform-function-name" "^7.22.5" + "@babel/plugin-transform-json-strings" "^7.22.5" + "@babel/plugin-transform-literals" "^7.22.5" + "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" + "@babel/plugin-transform-member-expression-literals" "^7.22.5" + "@babel/plugin-transform-modules-amd" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-modules-systemjs" "^7.22.5" + "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" + "@babel/plugin-transform-numeric-separator" "^7.22.5" + "@babel/plugin-transform-object-rest-spread" "^7.22.5" + "@babel/plugin-transform-object-super" "^7.22.5" + "@babel/plugin-transform-optional-catch-binding" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.6" + "@babel/plugin-transform-parameters" "^7.22.5" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.5" + "@babel/plugin-transform-property-literals" "^7.22.5" + "@babel/plugin-transform-regenerator" "^7.22.5" + "@babel/plugin-transform-reserved-words" "^7.22.5" + "@babel/plugin-transform-shorthand-properties" "^7.22.5" + "@babel/plugin-transform-spread" "^7.22.5" + "@babel/plugin-transform-sticky-regex" "^7.22.5" + "@babel/plugin-transform-template-literals" "^7.22.5" + "@babel/plugin-transform-typeof-symbol" "^7.22.5" + "@babel/plugin-transform-unicode-escapes" "^7.22.5" + "@babel/plugin-transform-unicode-property-regex" "^7.22.5" + "@babel/plugin-transform-unicode-regex" "^7.22.5" + "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.22.5" + babel-plugin-polyfill-corejs2 "^0.4.4" + babel-plugin-polyfill-corejs3 "^0.8.2" + babel-plugin-polyfill-regenerator "^0.5.1" + core-js-compat "^3.31.0" + semver "^6.3.1" + "@babel/preset-flow@^7.0.0": version "7.22.5" resolved "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.22.5.tgz" @@ -746,6 +1057,17 @@ "@babel/helper-validator-option" "^7.22.5" "@babel/plugin-transform-flow-strip-types" "^7.22.5" +"@babel/preset-modules@^0.1.5": + version "0.1.6" + resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz" + integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + "@babel/preset-typescript@^7.1.0": version "7.22.5" resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz" @@ -774,33 +1096,22 @@ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": - version "7.22.6" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz" - integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ== - dependencies: - regenerator-runtime "^0.13.11" + version "7.28.4" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz" + integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ== -"@babel/template@^7.0.0", "@babel/template@^7.22.5", "@babel/template@^7.3.3": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz" - integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== +"@babel/template@^7.0.0", "@babel/template@^7.22.15", "@babel/template@^7.22.5", "@babel/template@^7.27.2", "@babel/template@^7.3.3": + version "7.27.2" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz" + integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw== dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" + "@babel/code-frame" "^7.27.1" + "@babel/parser" "^7.27.2" + "@babel/types" "^7.27.1" -"@babel/template@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" - integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== - dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/parser" "^7.22.15" - "@babel/types" "^7.22.15" - -"@babel/traverse@^7.1.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4": +"@babel/traverse@^7.1.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.22.8", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4": version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.6.tgz#b53526a2367a0dd6edc423637f3d2d0f2521abc5" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz" integrity sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ== dependencies: "@babel/code-frame" "^7.23.5" @@ -814,23 +1125,13 @@ debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.3.3", "@babel/types@^7.7.0": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz" - integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.27.1", "@babel/types@^7.28.4", "@babel/types@^7.28.5", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz" + integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA== dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - to-fast-properties "^2.0.0" - -"@babel/types@^7.22.15", "@babel/types@^7.23.0", "@babel/types@^7.23.6": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" - integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== - dependencies: - "@babel/helper-string-parser" "^7.23.4" - "@babel/helper-validator-identifier" "^7.22.20" - to-fast-properties "^2.0.0" + "@babel/helper-string-parser" "^7.27.1" + "@babel/helper-validator-identifier" "^7.28.5" "@bcoe/v8-coverage@^0.2.3": version "0.2.3" @@ -1104,16 +1405,16 @@ resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/sourcemap-codec@1.4.14": - version "1.4.14" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - "@jridgewell/sourcemap-codec@^1.4.10": version "1.4.15" resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": version "0.3.18" resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz" @@ -1335,7 +1636,7 @@ "@react-navigation/elements" "^1.3.18" warn-once "^0.1.0" -"@react-navigation/native@^6.0.8": +"@react-navigation/native@^6.0.0", "@react-navigation/native@^6.0.8": version "6.1.7" resolved "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.7.tgz" integrity sha512-W6E3+AtTombMucCRo6q7vPmluq8hSjS+IxfazJ/SokOe7ChJX7eLvvralIsJkjFj3iWV1KgOSnHxa6hdiFasBw== @@ -1607,7 +1908,7 @@ eslint-scope "^5.0.0" eslint-utils "^2.0.0" -"@typescript-eslint/parser@^3.1.0": +"@typescript-eslint/parser@^3.0.0", "@typescript-eslint/parser@^3.1.0": version "3.10.1" resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-3.10.1.tgz" integrity sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw== @@ -1666,7 +1967,7 @@ absolute-path@^0.0.0: resolved "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz" integrity sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA== -accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.7: +accepts@^1.3.7, accepts@~1.3.7: version "1.3.8" resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== @@ -1692,7 +1993,7 @@ acorn-walk@^7.1.1: resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== -acorn@^7.1.1, acorn@^7.4.0: +"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^7.1.1, acorn@^7.4.0: version "7.4.1" resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== @@ -1755,7 +2056,14 @@ ansi-regex@^5.0.0, ansi-regex@^5.0.1: resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^3.2.0, ansi-styles@^3.2.1: +ansi-styles@^3.2.0: + version "3.2.1" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== @@ -2084,16 +2392,11 @@ balanced-match@^1.0.0: resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base-64@0.1.0, base-64@^0.1.0: +base-64@^0.1.0, base-64@0.1.0: version "0.1.0" resolved "https://registry.npmjs.org/base-64/-/base-64-0.1.0.tgz" integrity sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA== -base64-js@^1.1.2, base64-js@^1.5.1: - version "1.5.1" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - base@^0.11.1: version "0.11.2" resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz" @@ -2107,6 +2410,11 @@ base@^0.11.1: mixin-deep "^1.2.0" pascalcase "^0.1.1" +base64-js@^1.1.2, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + big-integer@1.6.x: version "1.6.51" resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz" @@ -2127,17 +2435,17 @@ bplist-parser@0.3.1: big-integer "1.6.x" brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + version "1.1.12" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz" + integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" brace-expansion@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" - integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + version "2.0.2" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz" + integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ== dependencies: balanced-match "^1.0.0" @@ -2157,19 +2465,19 @@ braces@^2.3.1: split-string "^3.0.2" to-regex "^3.0.1" -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: - fill-range "^7.0.1" + fill-range "^7.1.1" browser-process-hrtime@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== -browserslist@^4.21.9: +browserslist@^4.21.9, "browserslist@>= 4.21.0": version "4.21.9" resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz" integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== @@ -2191,10 +2499,10 @@ buffer-from@^1.0.0: resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== cache-base@^1.0.1: version "1.0.1" @@ -2211,6 +2519,14 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" @@ -2265,7 +2581,16 @@ capture-exit@^2.0.0: dependencies: rsvp "^4.8.4" -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: +chalk@^2.0.1: + version "2.4.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^2.4.2: version "2.4.2" resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -2383,16 +2708,16 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - color-name@~1.1.4: version "1.1.4" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + colorette@^1.0.7: version "1.4.0" resolved "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz" @@ -2435,7 +2760,7 @@ component-emitter@^1.2.1: resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== -compressible@~2.0.16: +compressible@~2.0.18: version "2.0.18" resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== @@ -2443,16 +2768,16 @@ compressible@~2.0.16: mime-db ">= 1.43.0 < 2" compression@^1.7.1: - version "1.7.4" - resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + version "1.8.1" + resolved "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz" + integrity sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w== dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" + bytes "3.1.2" + compressible "~2.0.18" debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" + negotiator "~0.6.4" + on-headers "~1.1.0" + safe-buffer "5.2.1" vary "~1.1.2" concat-map@0.0.1: @@ -2510,9 +2835,9 @@ cross-fetch@^3.1.5: node-fetch "^2.6.12" cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + version "6.0.6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz" + integrity sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw== dependencies: nice-try "^1.0.4" path-key "^2.0.1" @@ -2521,9 +2846,9 @@ cross-spawn@^6.0.0: which "^1.2.9" cross-spawn@^7.0.0, cross-spawn@^7.0.2: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -2565,20 +2890,34 @@ dayjs@^1.8.15: resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz" integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA== -debug@2.6.9, debug@^2.2.0, debug@^2.3.3: +debug@^2.2.0: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^2.3.3: version "2.6.9" resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: +debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@4: version "4.3.4" resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" +debug@2.6.9: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + decamelize@^1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" @@ -2695,7 +3034,16 @@ domexception@^2.0.1: resolved "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz" integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== dependencies: - webidl-conversions "^5.0.0" + webidl-conversions "^5.0.0" + +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" ee-first@1.1.1: version "1.1.1" @@ -2727,6 +3075,11 @@ encodeurl@~1.0.2: resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" @@ -2813,14 +3166,32 @@ es-abstract@^1.19.0, es-abstract@^1.20.4: unbox-primitive "^1.0.2" which-typed-array "^1.1.10" -es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== +es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" - has-tostringtag "^1.0.0" + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.1, es-set-tostringtag@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" + integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== + dependencies: + es-errors "^1.3.0" + get-intrinsic "^1.2.6" + has-tostringtag "^1.0.2" + hasown "^2.0.2" es-shim-unscopables@^1.0.0: version "1.0.0" @@ -2972,7 +3343,7 @@ eslint-visitor-keys@^2.0.0: resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== -eslint@7.14.0: +eslint@*, "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^3.17.0 || ^4 || ^5 || ^6 || ^7", "eslint@^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@>= 4.12.1", "eslint@>= 5.0.0", eslint@>=2.0.0, eslint@>=3.14.1, eslint@>=4.19.1, eslint@>=5, eslint@>=6, eslint@7.14.0: version "7.14.0" resolved "https://registry.npmjs.org/eslint/-/eslint-7.14.0.tgz" integrity sha512-5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA== @@ -3138,7 +3509,15 @@ extend-shallow@^2.0.1: dependencies: is-extendable "^0.1.0" -extend-shallow@^3.0.0, extend-shallow@^3.0.2: +extend-shallow@^3.0.0: + version "3.0.2" + resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend-shallow@^3.0.2: version "3.0.2" resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== @@ -3222,10 +3601,10 @@ fill-range@^4.0.0: repeat-string "^1.6.1" to-regex-range "^2.1.0" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" @@ -3293,16 +3672,16 @@ flatted@^2.0.0: resolved "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz" integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== -flow-parser@0.*: - version "0.213.0" - resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.213.0.tgz" - integrity sha512-jPTKNk0lC/iVbaPzfSReo/I67x+PLYiXkFuxHyFYmlJReP3RAoGbmRSC6g8MCEtzw8Uv3clKFmOlEL/LEcoWlw== - flow-parser@^0.121.0: version "0.121.0" resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.121.0.tgz" integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg== +flow-parser@0.*: + version "0.213.0" + resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.213.0.tgz" + integrity sha512-jPTKNk0lC/iVbaPzfSReo/I67x+PLYiXkFuxHyFYmlJReP3RAoGbmRSC6g8MCEtzw8Uv3clKFmOlEL/LEcoWlw== + for-each@^0.3.3: version "0.3.3" resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" @@ -3316,13 +3695,15 @@ for-in@^1.0.2: integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + version "3.0.4" + resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz" + integrity sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" - mime-types "^2.1.12" + es-set-tostringtag "^2.1.0" + hasown "^2.0.2" + mime-types "^2.1.35" fragment-cache@^0.2.1: version "0.2.1" @@ -3364,10 +3745,10 @@ fsevents@^2.1.2: resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.1, function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== function.prototype.name@^1.1.5: version "1.1.5" @@ -3399,21 +3780,35 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-proto "^1.0.1" - has-symbols "^1.0.3" +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1, get-intrinsic@^1.2.6: + version "1.3.0" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== +get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + get-stdin@^6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz" @@ -3453,18 +3848,6 @@ glob-parent@^5.0.0: dependencies: is-glob "^4.0.1" -glob@7.0.6: - version "7.0.6" - resolved "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz" - integrity sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.2" - once "^1.3.0" - path-is-absolute "^1.0.0" - glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: version "7.2.3" resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" @@ -3488,6 +3871,18 @@ glob@^8.0.3: minimatch "^5.0.1" once "^1.3.0" +glob@7.0.6: + version "7.0.6" + resolved "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz" + integrity sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + globals@^11.1.0: version "11.12.0" resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" @@ -3507,12 +3902,10 @@ globalthis@^1.0.3: dependencies: define-properties "^1.1.3" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4: version "4.2.11" @@ -3551,17 +3944,17 @@ has-proto@^1.0.1: resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.0.2, has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: - has-symbols "^1.0.2" + has-symbols "^1.0.3" has-value@^0.3.1: version "0.3.1" @@ -3601,6 +3994,13 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + hermes-engine@~0.9.0: version "0.9.0" resolved "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.9.0.tgz" @@ -3734,7 +4134,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@~2.0.3: +inherits@~2.0.3, inherits@2, inherits@2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -3757,7 +4157,7 @@ invariant@^2.2.4: ip@^1.1.5: version "1.1.9" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.9.tgz#8dfbcc99a754d07f425310b86a99546b1151e396" + resolved "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz" integrity sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ== is-accessor-descriptor@^0.1.6: @@ -4031,16 +4431,16 @@ is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" -isarray@1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - isarray@^2.0.5: version "2.0.5" resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== +isarray@~1.0.0, isarray@1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + isexe@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" @@ -4325,7 +4725,7 @@ jest-resolve-dependencies@^26.6.3: jest-regex-util "^26.0.0" jest-snapshot "^26.6.2" -jest-resolve@^26.6.2: +jest-resolve@*, jest-resolve@^26.6.2: version "26.6.2" resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz" integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ== @@ -4634,7 +5034,21 @@ jsonfile@^4.0.0: object.assign "^4.1.4" object.values "^1.1.6" -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: +kind-of@^3.0.2: + version "3.2.2" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + +kind-of@^3.0.3: + version "3.2.2" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + +kind-of@^3.2.0: version "3.2.2" resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== @@ -4789,6 +5203,11 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + merge-options@^3.0.4: version "3.0.4" resolved "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz" @@ -4839,7 +5258,7 @@ metro-cache@0.66.2: mkdirp "^0.5.1" rimraf "^2.5.4" -metro-config@0.66.2, metro-config@^0.66.1: +metro-config@^0.66.1, metro-config@0.66.2: version "0.66.2" resolved "https://registry.npmjs.org/metro-config/-/metro-config-0.66.2.tgz" integrity sha512-0C+PrKKIBNNzLZUKN/8ZDJS2U5FLMOTXDWbvBHIdqb6YXz8WplXR2+xlSlaSCCi5b+GR7cWFWUNeKA4GQS1/AQ== @@ -4851,7 +5270,7 @@ metro-config@0.66.2, metro-config@^0.66.1: metro-core "0.66.2" metro-runtime "0.66.2" -metro-core@0.66.2, metro-core@^0.66.1: +metro-core@^0.66.1, metro-core@0.66.2: version "0.66.2" resolved "https://registry.npmjs.org/metro-core/-/metro-core-0.66.2.tgz" integrity sha512-JieLZkef/516yxXYvQxWnf3OWw5rcgWRy76K8JV/wr/i8LGVGulPAXlIi445/QZzXVydzRVASKAEVqyxM5F4mA== @@ -4882,7 +5301,7 @@ metro-minify-uglify@0.66.2: dependencies: uglify-es "^3.1.9" -metro-react-native-babel-preset@0.66.2, metro-react-native-babel-preset@^0.66.2: +metro-react-native-babel-preset@^0.66.2, metro-react-native-babel-preset@0.66.2: version "0.66.2" resolved "https://registry.npmjs.org/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.66.2.tgz" integrity sha512-H/nLBAz0MgfDloSe1FjyH4EnbokHFdncyERvLPXDACY3ROVRCeUyFNo70ywRGXW2NMbrV4H7KUyU4zkfWhC2HQ== @@ -4928,7 +5347,7 @@ metro-react-native-babel-preset@0.66.2, metro-react-native-babel-preset@^0.66.2: "@babel/template" "^7.0.0" react-refresh "^0.4.0" -metro-react-native-babel-transformer@0.66.2, metro-react-native-babel-transformer@^0.66.1: +metro-react-native-babel-transformer@^0.66.1, metro-react-native-babel-transformer@0.66.2: version "0.66.2" resolved "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.66.2.tgz" integrity sha512-z1ab7ihIT0pJrwgi9q2IH+LcW/xUWMQ0hH+Mrk7wbKQB0RnJdXFoxphrfoVHBHMUu+TBPetUcEkKawkK1e7Cng== @@ -4941,14 +5360,14 @@ metro-react-native-babel-transformer@0.66.2, metro-react-native-babel-transforme metro-source-map "0.66.2" nullthrows "^1.1.1" -metro-resolver@0.66.2, metro-resolver@^0.66.1: +metro-resolver@^0.66.1, metro-resolver@0.66.2: version "0.66.2" resolved "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.66.2.tgz" integrity sha512-pXQAJR/xauRf4kWFj2/hN5a77B4jLl0Fom5I3PHp6Arw/KxSBp0cnguXpGLwNQ6zQC0nxKCoYGL9gQpzMnN7Hw== dependencies: absolute-path "^0.0.0" -metro-runtime@0.66.2, metro-runtime@^0.66.1: +metro-runtime@^0.66.1, metro-runtime@0.66.2: version "0.66.2" resolved "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.66.2.tgz" integrity sha512-vFhKBk2ot9FS4b+2v0OTa/guCF/QDAOJubY0CNg7PzCS5+w4y3IvZIcPX4SSS1t8pYEZBLvtdtTDarlDl81xmg== @@ -5009,7 +5428,7 @@ metro-transform-worker@0.66.2: metro-transform-plugins "0.66.2" nullthrows "^1.1.1" -metro@0.66.2, metro@^0.66.1: +metro@^0.66.1, metro@0.66.2: version "0.66.2" resolved "https://registry.npmjs.org/metro/-/metro-0.66.2.tgz" integrity sha512-uNsISfcQ3iKKSHoN5Q+LAh0l3jeeg7ZcNZ/4BAHGsk02erA0OP+l2m+b5qYVoPptHz9Oc3KyG5oGJoTu41pWjg== @@ -5067,7 +5486,26 @@ metro@0.66.2, metro@^0.66.1: ws "^1.1.5" yargs "^15.3.1" -micromatch@^3.1.10, micromatch@^3.1.4: +micromatch@^3.1.10: + version "3.1.10" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +micromatch@^3.1.4: version "3.1.10" resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== @@ -5087,35 +5525,35 @@ micromatch@^3.1.10, micromatch@^3.1.4: to-regex "^3.0.2" micromatch@^4.0.2: - version "4.0.5" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + version "4.0.8" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: - braces "^3.0.2" + braces "^3.0.3" picomatch "^2.3.1" -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": +"mime-db@>= 1.43.0 < 2", mime-db@1.52.0: version "1.52.0" resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.34: +mime-types@^2.1.27, mime-types@^2.1.35, mime-types@~2.1.34: version "2.1.35" resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime@1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - mime@^2.4.1: version "2.6.0" resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== +mime@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz" @@ -5176,9 +5614,9 @@ ms@2.1.3: integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== nanoid@^3.1.23: - version "3.3.6" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== + version "3.3.11" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz" + integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== nanomatch@^1.2.9: version "1.2.13" @@ -5202,6 +5640,11 @@ natural-compare@^1.4.0: resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== +negotiator@~0.6.4: + version "0.6.4" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz" + integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== + negotiator@0.6.3: version "0.6.3" resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" @@ -5397,13 +5840,6 @@ object.values@^1.1.6: define-properties "^1.1.4" es-abstract "^1.20.4" -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - on-finished@~2.3.0: version "2.3.0" resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" @@ -5411,10 +5847,17 @@ on-finished@~2.3.0: dependencies: ee-first "1.1.1" -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz" + integrity sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" @@ -5574,7 +6017,12 @@ path-key@^2.0.0, path-key@^2.0.1: resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== -path-key@^3.0.0, path-key@^3.1.0: +path-key@^3.0.0: + version "3.1.1" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-key@^3.1.0: version "3.1.1" resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== @@ -5584,10 +6032,10 @@ path-parse@^1.0.7: resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.3.1: version "2.3.1" @@ -5651,7 +6099,7 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^2.0.2: +prettier@^2.0.2, "prettier@>= 1.13.0": version "2.8.8" resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== @@ -5747,7 +6195,7 @@ range-parser@~1.2.1: react-devtools-core@^4.13.0: version "4.28.5" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.5.tgz#c8442b91f068cdf0c899c543907f7f27d79c2508" + resolved "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.28.5.tgz" integrity sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA== dependencies: shell-quote "^1.6.1" @@ -5763,7 +6211,17 @@ react-freeze@^1.0.0: resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz" integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== -react-is@^16.13.0, react-is@^16.13.1, react-is@^16.7.0: +react-is@^16.13.0: + version "16.13.1" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^16.7.0: version "16.13.1" resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== @@ -5780,7 +6238,7 @@ react-native-animatable@1.3.3: dependencies: prop-types "^15.7.2" -react-native-camera@^4.2.1: +react-native-camera@^4.2.1, react-native-camera@>=1.0.2: version "4.2.1" resolved "https://registry.npmjs.org/react-native-camera/-/react-native-camera-4.2.1.tgz" integrity sha512-+Vkql24PFYQfsPRznJCvPwJQfyzCnjlcww/iZ4Ej80bgivKjL9eU0IMQIXp4yi6XCrKi4voWXxIDPMupQZKeIQ== @@ -5803,7 +6261,7 @@ react-native-device-info@^9.0.2: react-native-document-picker@^8.2.2: version "8.2.2" - resolved "https://registry.yarnpkg.com/react-native-document-picker/-/react-native-document-picker-8.2.2.tgz#f59448957818b7ce8f2f6288f7a4268ecf3ba997" + resolved "https://registry.npmjs.org/react-native-document-picker/-/react-native-document-picker-8.2.2.tgz" integrity sha512-5xYoueCDaeU+eZLJM4AxGPedublk4w3YzpdoQR9ayd4E5AdLt1uY1ruK8HoZ/+G4v97o2cFlxfYcuw9QWVMUDA== dependencies: invariant "^2.2.4" @@ -5835,16 +6293,16 @@ react-native-modal@^12.1.0: prop-types "^15.6.2" react-native-animatable "1.3.3" -react-native-permissions@3.4.0: - version "3.4.0" - resolved "https://registry.npmjs.org/react-native-permissions/-/react-native-permissions-3.4.0.tgz" - integrity sha512-qNMFVPBhffuC7APZ7/etzlnrDGh7Givfq3pOI37GDjcenOFEOMFU8qyU+vRrrOwbUMuwtDAjWxe6ZBX1ZM+aAw== - react-native-permissions@^2.0.2: version "2.2.2" resolved "https://registry.npmjs.org/react-native-permissions/-/react-native-permissions-2.2.2.tgz" integrity sha512-ihf4shQDSX5Oo9ChQXb9kr13mmyyNem5MaEvOpr3dCjhBOBWyEMztXm9/uPK1Qg5PsNpaYLa1KpcPZDCw87LXg== +react-native-permissions@3.4.0: + version "3.4.0" + resolved "https://registry.npmjs.org/react-native-permissions/-/react-native-permissions-3.4.0.tgz" + integrity sha512-qNMFVPBhffuC7APZ7/etzlnrDGh7Givfq3pOI37GDjcenOFEOMFU8qyU+vRrrOwbUMuwtDAjWxe6ZBX1ZM+aAw== + react-native-qrcode-scanner@^1.5.5: version "1.5.5" resolved "https://registry.npmjs.org/react-native-qrcode-scanner/-/react-native-qrcode-scanner-1.5.5.tgz" @@ -5854,12 +6312,12 @@ react-native-qrcode-scanner@^1.5.5: prop-types "^15.5.10" react-native-permissions "^2.0.2" -react-native-safe-area-context@^3.4.1: +react-native-safe-area-context@^3.4.1, "react-native-safe-area-context@>= 3.0.0": version "3.4.1" resolved "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-3.4.1.tgz" integrity sha512-xfpVd0CiZR7oBhuwJ2HcZMehg5bjha1Ohu1XHpcT+9ykula0TgovH2BNU0R5Krzf/jBR1LMjR6VabxdlUjqxcA== -react-native-screens@^3.23.0: +react-native-screens@^3.23.0, "react-native-screens@>= 3.0.0": version "3.23.0" resolved "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.23.0.tgz" integrity sha512-SdYGv1/f2o43OVZlBtaHEIfyWa3EjqBWB3m/kH+G7m8tNIi98mh4t5bUL7ISBtaR4Zhrs1sU93Rq6BYoHECdgQ== @@ -5885,7 +6343,7 @@ react-native-vector-icons@^9.2.0: prop-types "^15.7.2" yargs "^16.1.1" -react-native@0.66.5: +react-native@*, "react-native@^0.0.0-0 || 0.60 - 0.72 || 1000.0.0", react-native@>=0.59, react-native@>=0.60.0, react-native@>=0.63.3, react-native@0.66.5: version "0.66.5" resolved "https://registry.npmjs.org/react-native/-/react-native-0.66.5.tgz" integrity sha512-dC5xmE1anT+m8eGU0N/gv2XUWZygii6TTqbwZPsN+uMhVvjxt4FsTqpZOFFvA5sxLPR/NDEz8uybTvItNBMClw== @@ -5957,7 +6415,7 @@ react-test-renderer@17.0.2: react-shallow-renderer "^16.13.1" scheduler "^0.20.2" -react@17.0.2: +react@*, "react@^16.0.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.3 || ^17 || ^18", react@>=16.13.1, react@>=16.8, react@>=16.8.6, react@>=17.0.0, react@17.0.2: version "17.0.2" resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz" integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== @@ -6031,7 +6489,7 @@ regenerate@^1.4.2: resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.2: +regenerator-runtime@^0.13.2: version "0.13.11" resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== @@ -6177,13 +6635,6 @@ ret@~0.1.10: resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== -rimraf@2.6.3, rimraf@~2.6.2: - version "2.6.3" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" - rimraf@^2.5.4: version "2.7.1" resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" @@ -6203,6 +6654,13 @@ rimraf@~2.2.6: resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz" integrity sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg== +rimraf@~2.6.2, rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + rn-fetch-blob@^0.12.0: version "0.12.0" resolved "https://registry.npmjs.org/rn-fetch-blob/-/rn-fetch-blob-0.12.0.tgz" @@ -6226,11 +6684,16 @@ safe-array-concat@^1.0.0: has-symbols "^1.0.3" isarray "^2.0.5" -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== +safe-buffer@5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + safe-regex-test@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz" @@ -6287,7 +6750,12 @@ scheduler@^0.20.2: loose-envify "^1.1.0" object-assign "^4.1.1" -"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: +semver@^5.5.0: + version "5.7.2" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^5.6.0: version "5.7.2" resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== @@ -6297,17 +6765,29 @@ semver@^6.0.0, semver@^6.3.0, semver@^6.3.1: resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.2.1, semver@^7.3.2: +semver@^7.2.1: + version "7.5.4" + resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + +semver@^7.3.2: version "7.5.4" resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -send@0.18.0: - version "0.18.0" - resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== +"semver@2 || 3 || 4 || 5": + version "5.7.2" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +send@0.19.0: + version "0.19.0" + resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" depd "2.0.0" @@ -6329,14 +6809,14 @@ serialize-error@^2.1.0: integrity sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw== serve-static@^1.13.1: - version "1.15.0" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + version "1.16.2" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz" + integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== dependencies: - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.18.0" + send "0.19.0" set-blocking@^2.0.0: version "2.0.0" @@ -6585,16 +7065,16 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - statuses@~1.5.0: version "1.5.0" resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + stream-buffers@2.2.x: version "2.2.0" resolved "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz" @@ -6605,6 +7085,13 @@ strict-uri-encode@^2.0.0: resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz" integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + string-length@^4.0.1: version "4.0.2" resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" @@ -6672,14 +7159,21 @@ string.prototype.trimstart@^1.0.6: define-properties "^1.1.4" es-abstract "^1.20.4" -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== +strip-ansi@^5.0.0: + version "5.2.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: - safe-buffer "~5.1.0" + ansi-regex "^4.1.0" + +strip-ansi@^5.1.0: + version "5.2.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: +strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== @@ -6760,6 +7254,13 @@ table@^5.2.3: slice-ansi "^2.1.0" string-width "^3.0.0" +temp@^0.8.1: + version "0.8.4" + resolved "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz" + integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== + dependencies: + rimraf "~2.6.2" + temp@0.8.3: version "0.8.3" resolved "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz" @@ -6768,13 +7269,6 @@ temp@0.8.3: os-tmpdir "^1.0.0" rimraf "~2.2.6" -temp@^0.8.1: - version "0.8.4" - resolved "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz" - integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== - dependencies: - rimraf "~2.6.2" - terminal-link@^2.0.0: version "2.1.1" resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" @@ -6815,11 +7309,6 @@ tmpl@1.0.5: resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - to-object-path@^0.3.0: version "0.3.0" resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" @@ -6974,7 +7463,7 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typescript@^3.8.3: +typescript@^3.8.3, "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta": version "3.9.10" resolved "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz" integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== @@ -7103,7 +7592,7 @@ use-subscription@^1.0.0: dependencies: use-sync-external-store "^1.2.0" -use-sync-external-store@1.2.0, use-sync-external-store@^1.2.0: +use-sync-external-store@^1.2.0, use-sync-external-store@1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz" integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== @@ -7351,16 +7840,21 @@ ws@^1.1.0, ws@^1.1.5: ultron "1.0.x" ws@^6.1.4: - version "6.2.2" - resolved "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz" - integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + version "6.2.3" + resolved "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz" + integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA== dependencies: async-limiter "~1.0.0" -ws@^7, ws@^7.4.6: - version "7.5.9" - resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz" - integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== +ws@^7: + version "7.5.10" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" + integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== + +ws@^7.4.6: + version "7.5.10" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" + integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== xcode@^2.0.0: version "2.1.0" diff --git a/sample-apps/VirtualBackgroundSample/README.md b/sample-apps/VirtualBackgroundSample/README.md index 8bd066df0..d009fd15c 100644 --- a/sample-apps/VirtualBackgroundSample/README.md +++ b/sample-apps/VirtualBackgroundSample/README.md @@ -1,79 +1,94 @@ -This is a new [**React Native**](https://reactnative.dev) project, bootstrapped using [`@react-native-community/cli`](https://github.com/react-native-community/cli). +# 100ms Virtual Background Sample App -# Getting Started +This is a React Native sample app demonstrating the Virtual Background feature with the 100ms React Native SDK. + +## Requirements + +### Minimum Configuration + +- React Native 0.73.0 or above +- Java 17 or above +- Android API level 24 or above +- Xcode 14 or above +- iOS 16 or above +- Node.js 22 or above + +### Recommended Configuration + +- React Native 0.77.3 or above +- Java 17 or above +- Android API level 35 or above +- Xcode 15 or above +- iOS 16 or above +- Node.js 22 or above + +## Getting Started > **Note**: Make sure you have completed the [React Native - Environment Setup](https://reactnative.dev/docs/environment-setup) instructions till "Creating a new application" step, before proceeding. -## Step 1: Start the Metro Server +### Step 1: Install Dependencies -First, you will need to start **Metro**, the JavaScript _bundler_ that ships _with_ React Native. +First, install the project dependencies: -To start Metro, run the following command from the _root_ of your React Native project: +```bash +npm install +``` + +### Step 2: Start the Metro Server + +Start Metro, the JavaScript bundler that ships with React Native: ```bash -# using npm npm start - -# OR using Yarn -yarn start ``` -## Step 2: Start your Application +### Step 3: Start your Application -Let Metro Bundler run in its _own_ terminal. Open a _new_ terminal from the _root_ of your React Native project. Run the following command to start your _Android_ or _iOS_ app: +Let Metro Bundler run in its own terminal. Open a new terminal from the root of your React Native project and run the following command to start your Android or iOS app: -### For Android +#### For Android ```bash -# using npm npm run android +``` + +#### For iOS + +First, install the iOS dependencies: -# OR using Yarn -yarn android +```bash +cd ios +pod install +cd .. ``` -### For iOS +Then run the app: ```bash -# using npm npm run ios - -# OR using Yarn -yarn ios ``` -If everything is set up _correctly_, you should see your new app running in your _Android Emulator_ or _iOS Simulator_ shortly provided you have set up your emulator/simulator correctly. +If everything is set up correctly, you should see your new app running in your Android Emulator or iOS Simulator shortly provided you have set up your emulator/simulator correctly. This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively. -## Step 3: Modifying your App - -Now that you have successfully run the app, let's modify it. - -1. Open `App.tsx` in your text editor of choice and edit some lines. -2. For **Android**: Press the R key twice or select **"Reload"** from the **Developer Menu** (Ctrl + M (on Window and Linux) or Cmd ⌘ + M (on macOS)) to see your changes! - - For **iOS**: Hit Cmd ⌘ + R in your iOS Simulator to reload the app and see your changes! - -## Congratulations! :tada: - -You've successfully run and modified your React Native App. :partying_face: +## Features -### Now what? +This sample app demonstrates: -- If you want to add this new React Native code to an existing application, check out the [Integration guide](https://reactnative.dev/docs/integration-with-existing-apps). -- If you're curious to learn more about React Native, check out the [Introduction to React Native](https://reactnative.dev/docs/getting-started). +- Virtual background effects with 100ms React Native SDK +- Background blur effects +- Custom background images +- Real-time video processing -# Troubleshooting +## Learn More -If you can't get this to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page. +To learn more about 100ms React Native SDK and Virtual Background feature, take a look at the following resources: -# Learn More +- [100ms React Native SDK Documentation](https://www.100ms.live/docs/react-native/v2/foundation/basics) +- [Virtual Background Guide](https://www.100ms.live/docs/react-native/v2/how-to-guides/extend-capabilities/plugins/virtual-background) +- [100ms Dashboard](https://dashboard.100ms.live/) -To learn more about React Native, take a look at the following resources: +## Troubleshooting -- [React Native Website](https://reactnative.dev) - learn more about React Native. -- [Getting Started](https://reactnative.dev/docs/environment-setup) - an **overview** of React Native and how setup your environment. -- [Learn the Basics](https://reactnative.dev/docs/getting-started) - a **guided tour** of the React Native **basics**. -- [Blog](https://reactnative.dev/blog) - read the latest official React Native **Blog** posts. -- [`@facebook/react-native`](https://github.com/facebook/react-native) - the Open Source; GitHub **repository** for React Native. +If you can't get this to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page or visit the [100ms Discord Community](https://100ms.live/discord). diff --git a/sample-apps/VirtualBackgroundSample/package.json b/sample-apps/VirtualBackgroundSample/package.json index f28d62f0a..036a806fd 100644 --- a/sample-apps/VirtualBackgroundSample/package.json +++ b/sample-apps/VirtualBackgroundSample/package.json @@ -13,7 +13,7 @@ "@100mslive/react-native-hms": "^1.10.6", "@100mslive/react-native-room-kit": "^1.1.9", "@100mslive/react-native-video-plugin": "0.1.2", - "@100mslive/types-prebuilt": "^0.12.9", + "@100mslive/types-prebuilt": "^0.12.12", "@react-native-community/blur": "^4.4.0", "@react-native-masked-view/masked-view": "^0.2.9", "@shopify/flash-list": "^1.6.4", diff --git a/sample-apps/rn-quickstart-app/package-lock.json b/sample-apps/rn-quickstart-app/package-lock.json index b73f5bd5a..be8b9507e 100644 --- a/sample-apps/rn-quickstart-app/package-lock.json +++ b/sample-apps/rn-quickstart-app/package-lock.json @@ -70,12 +70,13 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" @@ -407,17 +408,17 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "engines": { "node": ">=6.9.0" } @@ -445,13 +446,12 @@ } }, "node_modules/@babel/helpers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz", - "integrity": "sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" @@ -461,6 +461,7 @@ "version": "7.23.4", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", @@ -471,9 +472,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", - "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dependencies": { + "@babel/types": "^7.28.5" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -1816,24 +1820,21 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz", - "integrity": "sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", - "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.23.9", - "@babel/types": "^7.23.9" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1860,13 +1861,12 @@ } }, "node_modules/@babel/types": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", - "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -2920,9 +2920,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/@react-native-community/cli-hermes/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -3136,9 +3136,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/@react-native-community/cli-platform-android/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -3400,9 +3400,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/@react-native-community/cli-platform-ios/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -3813,9 +3813,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/@react-native-community/cli/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -5258,12 +5258,12 @@ } }, "node_modules/axios": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz", - "integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", + "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", "proxy-from-env": "^1.1.0" } }, @@ -5648,20 +5648,20 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -5737,9 +5737,9 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } @@ -5776,6 +5776,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -6123,16 +6135,16 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { @@ -6152,6 +6164,33 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -6249,9 +6288,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -6505,6 +6544,19 @@ "node": ">=8" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -6638,6 +6690,47 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-shim-unscopables": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", @@ -7666,9 +7759,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -7840,9 +7933,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", "funding": [ { "type": "individual", @@ -7867,12 +7960,14 @@ } }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", "mime-types": "^2.1.12" }, "engines": { @@ -7930,9 +8025,12 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/function.prototype.name": { "version": "1.1.5", @@ -7984,14 +8082,23 @@ } }, "node_modules/get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "dev": true, + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -8006,6 +8113,18 @@ "node": ">=8.0.0" } }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/get-stdin": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", @@ -8114,12 +8233,11 @@ } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -8178,10 +8296,9 @@ } }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "engines": { "node": ">= 0.4" }, @@ -8190,12 +8307,11 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -8262,6 +8378,17 @@ "node": ">=0.10.0" } }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/hermes-engine": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.11.0.tgz", @@ -10945,14 +11072,16 @@ } }, "node_modules/jsdom/node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", "dev": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" }, "engines": { "node": ">= 6" @@ -11198,6 +11327,14 @@ "node": ">=0.10.0" } }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", @@ -12063,11 +12200,11 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -12160,9 +12297,15 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -12625,9 +12768,9 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", "engines": { "node": ">= 0.8" } @@ -12872,9 +13015,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -13440,9 +13583,9 @@ } }, "node_modules/react-native/node_modules/ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", "dependencies": { "async-limiter": "~1.0.0" } @@ -14040,9 +14183,9 @@ } }, "node_modules/sane/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dev": true, "dependencies": { "nice-try": "^1.0.4", @@ -14301,9 +14444,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -14380,19 +14523,27 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -15353,14 +15504,6 @@ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -16036,9 +16179,9 @@ } }, "node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "engines": { "node": ">=8.3.0" }, @@ -16201,12 +16344,13 @@ } }, "@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "requires": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" } }, "@babel/compat-data": { @@ -16449,14 +16593,14 @@ } }, "@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" }, "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" }, "@babel/helper-validator-option": { "version": "7.21.0", @@ -16475,19 +16619,19 @@ } }, "@babel/helpers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz", - "integrity": "sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "requires": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" } }, "@babel/highlight": { "version": "7.23.4", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", @@ -16495,9 +16639,12 @@ } }, "@babel/parser": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", - "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==" + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "requires": { + "@babel/types": "^7.28.5" + } }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", @@ -17368,21 +17515,18 @@ } }, "@babel/runtime": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz", - "integrity": "sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==", - "requires": { - "regenerator-runtime": "^0.13.11" - } + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" }, "@babel/template": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", - "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "requires": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.23.9", - "@babel/types": "^7.23.9" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" } }, "@babel/traverse": { @@ -17403,13 +17547,12 @@ } }, "@babel/types": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", - "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "requires": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" } }, "@bcoe/v8-coverage": { @@ -18191,9 +18334,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -18366,9 +18509,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -18530,9 +18673,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -18729,9 +18872,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -19961,12 +20104,12 @@ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" }, "axios": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz", - "integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", + "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", "proxy-from-env": "^1.1.0" } }, @@ -20264,20 +20407,20 @@ } }, "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "requires": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" } }, "browser-process-hrtime": { @@ -20320,9 +20463,9 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" }, "cache-base": { "version": "1.0.1", @@ -20350,6 +20493,15 @@ "get-intrinsic": "^1.0.2" } }, + "call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + } + }, "caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -20618,16 +20770,16 @@ } }, "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "dependencies": { @@ -20643,6 +20795,16 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -20728,9 +20890,9 @@ } }, "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -20922,6 +21084,16 @@ } } }, + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "requires": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + } + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -21028,6 +21200,35 @@ "unbox-primitive": "^1.0.2" } }, + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "requires": { + "es-errors": "^1.3.0" + } + }, + "es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "requires": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + } + }, "es-shim-unscopables": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", @@ -21797,9 +21998,9 @@ } }, "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "requires": { "to-regex-range": "^5.0.1" } @@ -21933,9 +22134,9 @@ "integrity": "sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==" }, "follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" }, "for-in": { "version": "1.0.2", @@ -21943,12 +22144,14 @@ "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" }, "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", "mime-types": "^2.1.12" } }, @@ -21987,9 +22190,9 @@ "optional": true }, "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" }, "function.prototype.name": { "version": "1.1.5", @@ -22026,14 +22229,20 @@ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "dev": true, + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" } }, "get-package-type": { @@ -22042,6 +22251,15 @@ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "requires": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + } + }, "get-stdin": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", @@ -22114,13 +22332,9 @@ } }, "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" }, "graceful-fs": { "version": "4.2.10", @@ -22163,18 +22377,16 @@ } }, "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" }, "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "requires": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" } }, "has-value": { @@ -22224,6 +22436,14 @@ } } }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, "hermes-engine": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.11.0.tgz", @@ -24216,14 +24436,16 @@ "dev": true }, "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", "dev": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" } } } @@ -24417,6 +24639,11 @@ "object-visit": "^1.0.0" } }, + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + }, "merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", @@ -25157,11 +25384,11 @@ } }, "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -25224,9 +25451,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" }, "nanomatch": { "version": "1.2.13", @@ -25582,9 +25809,9 @@ } }, "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==" }, "once": { "version": "1.4.0", @@ -25758,9 +25985,9 @@ "dev": true }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -26021,9 +26248,9 @@ }, "dependencies": { "ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", "requires": { "async-limiter": "~1.0.0" } @@ -26628,9 +26855,9 @@ } }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dev": true, "requires": { "nice-try": "^1.0.4", @@ -26835,9 +27062,9 @@ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" }, "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "requires": { "debug": "2.6.9", "depd": "2.0.0", @@ -26900,14 +27127,21 @@ "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==" }, "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "requires": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" + }, + "dependencies": { + "encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" + } } }, "set-blocking": { @@ -27672,11 +27906,6 @@ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -28201,9 +28430,9 @@ } }, "ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "requires": {} }, "xcode": { diff --git a/sample-apps/rn-quickstart-app/yarn.lock b/sample-apps/rn-quickstart-app/yarn.lock index 5e039e57c..00f9ede50 100644 --- a/sample-apps/rn-quickstart-app/yarn.lock +++ b/sample-apps/rn-quickstart-app/yarn.lock @@ -17,6 +17,15 @@ "@jridgewell/gen-mapping" "^0.1.0" "@jridgewell/trace-mapping" "^0.3.9" +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz" + integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg== + dependencies: + "@babel/helper-validator-identifier" "^7.27.1" + js-tokens "^4.0.0" + picocolors "^1.1.1" + "@babel/code-frame@7.12.11": version "7.12.11" resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz" @@ -24,27 +33,12 @@ dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6": - version "7.21.4" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/code-frame@^7.23.5": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" - integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== - dependencies: - "@babel/highlight" "^7.23.4" - chalk "^2.4.2" - "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5": version "7.21.7" resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz" integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== -"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.12.9", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.7.5": +"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.12.0", "@babel/core@^7.12.3", "@babel/core@^7.12.9", "@babel/core@^7.13.0", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.4.0-0", "@babel/core@^7.7.5": version "7.20.7" resolved "https://registry.npmjs.org/@babel/core/-/core-7.20.7.tgz" integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw== @@ -65,19 +59,9 @@ json5 "^2.2.1" semver "^6.3.0" -"@babel/generator@^7.14.0", "@babel/generator@^7.20.7": - version "7.21.5" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz" - integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== - dependencies: - "@babel/types" "^7.21.5" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - -"@babel/generator@^7.23.6": +"@babel/generator@^7.14.0", "@babel/generator@^7.20.7", "@babel/generator@^7.23.6": version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz" integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== dependencies: "@babel/types" "^7.23.6" @@ -100,7 +84,7 @@ "@babel/helper-explode-assignable-expression" "^7.18.6" "@babel/types" "^7.18.9" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7": +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5": version "7.21.5" resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz" integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== @@ -111,7 +95,7 @@ lru-cache "^5.1.1" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.7": +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.7", "@babel/helper-create-class-features-plugin@^7.21.0": version "7.21.5" resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.5.tgz" integrity sha512-yNSEck9SuDvPTEUYm4BSXl6ZVC7yO5ZLEMAhG3v3zi7RDxyL/nQDemWWZmw4L0stPWwhpnznRRyJHPRcbXR2jw== @@ -146,14 +130,9 @@ resolve "^1.14.2" semver "^6.1.2" -"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5": - version "7.21.5" - resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz" - integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== - -"@babel/helper-environment-visitor@^7.22.20": +"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5", "@babel/helper-environment-visitor@^7.22.20": version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== "@babel/helper-explode-assignable-expression@^7.18.6": @@ -163,25 +142,17 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - -"@babel/helper-function-name@^7.23.0": +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0", "@babel/helper-function-name@^7.23.0": version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz" integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== dependencies: "@babel/template" "^7.22.15" "@babel/types" "^7.23.0" -"@babel/helper-hoist-variables@^7.22.5": +"@babel/helper-hoist-variables@^7.18.6", "@babel/helper-hoist-variables@^7.22.5": version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz" integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== dependencies: "@babel/types" "^7.22.5" @@ -200,7 +171,7 @@ dependencies: "@babel/types" "^7.21.4" -"@babel/helper-module-transforms@^7.20.7", "@babel/helper-module-transforms@^7.21.5": +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.20.7", "@babel/helper-module-transforms@^7.21.5": version "7.21.5" resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz" integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== @@ -221,7 +192,7 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0": +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.21.5" resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz" integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== @@ -262,39 +233,22 @@ dependencies: "@babel/types" "^7.20.0" -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-split-export-declaration@^7.22.6": +"@babel/helper-split-export-declaration@^7.18.6", "@babel/helper-split-export-declaration@^7.22.6": version "7.22.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz" integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.21.5": - version "7.21.5" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz" - integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== - -"@babel/helper-string-parser@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" - integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== - -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== +"@babel/helper-string-parser@^7.27.1": + version "7.27.1" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz" + integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA== -"@babel/helper-validator-identifier@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" - integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== +"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.22.20", "@babel/helper-validator-identifier@^7.27.1", "@babel/helper-validator-identifier@^7.28.5": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz" + integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q== "@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0": version "7.21.0" @@ -312,43 +266,46 @@ "@babel/types" "^7.20.5" "@babel/helpers@^7.20.7": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.7.tgz" - integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA== - dependencies: - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + version "7.28.4" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz" + integrity sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w== dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" + "@babel/template" "^7.27.2" + "@babel/types" "^7.28.4" -"@babel/highlight@^7.23.4": +"@babel/highlight@^7.10.4": version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz" integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: "@babel/helper-validator-identifier" "^7.22.20" chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.7.0": - version "7.21.5" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.21.5.tgz" - integrity sha512-J+IxH2IsxV4HbnTrSWgMAQj0UEo61hDA4Ny8h8PCX0MLXiibqHbqIOVneqdocemSBc22VpBKxt4J6FQzy9HarQ== +"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.27.2", "@babel/parser@^7.7.0": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz" + integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ== + dependencies: + "@babel/types" "^7.28.5" -"@babel/parser@^7.23.9": - version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.9.tgz#7b903b6149b0f8fa7ad564af646c4c38a77fc44b" - integrity sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz" + integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.7" -"@babel/plugin-proposal-async-generator-functions@^7.0.0": +"@babel/plugin-proposal-async-generator-functions@^7.0.0", "@babel/plugin-proposal-async-generator-functions@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz" integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== @@ -358,7 +315,7 @@ "@babel/helper-remap-async-to-generator" "^7.18.9" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0": +"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0", "@babel/plugin-proposal-class-properties@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz" integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -366,6 +323,23 @@ "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-proposal-class-static-block@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz" + integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-proposal-dynamic-import@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-proposal-export-default-from@^7.0.0": version "7.18.10" resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.18.10.tgz" @@ -374,7 +348,31 @@ "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-export-default-from" "^7.18.6" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz" + integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz" integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== @@ -382,7 +380,15 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-object-rest-spread@^7.0.0": +"@babel/plugin-proposal-numeric-separator@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz" integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== @@ -393,7 +399,7 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.20.7" -"@babel/plugin-proposal-optional-catch-binding@^7.0.0": +"@babel/plugin-proposal-optional-catch-binding@^7.0.0", "@babel/plugin-proposal-optional-catch-binding@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz" integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== @@ -401,7 +407,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12": +"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.21.0": version "7.21.0" resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz" integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== @@ -410,6 +416,32 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" "@babel/plugin-syntax-optional-chaining" "^7.8.3" +"@babel/plugin-proposal-private-methods@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz" + integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" @@ -424,14 +456,21 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.8.3": +"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": version "7.12.13" resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-syntax-dynamic-import@^7.0.0": +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.0.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== @@ -445,6 +484,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.6", "@babel/plugin-syntax-flow@^7.2.0": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz" @@ -452,7 +498,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-syntax-import-meta@^7.8.3": +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.20.0" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== @@ -473,7 +526,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== @@ -487,7 +540,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.8.3": +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": version "7.10.4" resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== @@ -515,7 +568,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-top-level-await@^7.8.3": +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": version "7.14.5" resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== @@ -529,14 +589,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-arrow-functions@^7.0.0": +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.21.5": version "7.21.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz" integrity sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA== dependencies: "@babel/helper-plugin-utils" "^7.21.5" -"@babel/plugin-transform-async-to-generator@^7.0.0": +"@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz" integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== @@ -545,21 +605,21 @@ "@babel/helper-plugin-utils" "^7.20.2" "@babel/helper-remap-async-to-generator" "^7.18.9" -"@babel/plugin-transform-block-scoped-functions@^7.0.0": +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz" integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-block-scoping@^7.0.0": +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.21.0": version "7.21.0" resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz" integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ== dependencies: "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-classes@^7.0.0": +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.21.0": version "7.21.0" resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz" integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ== @@ -574,7 +634,7 @@ "@babel/helper-split-export-declaration" "^7.18.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.0.0": +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.21.5": version "7.21.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz" integrity sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q== @@ -582,14 +642,29 @@ "@babel/helper-plugin-utils" "^7.21.5" "@babel/template" "^7.20.7" -"@babel/plugin-transform-destructuring@^7.0.0": +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.21.3": version "7.21.3" resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz" integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA== dependencies: "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-exponentiation-operator@^7.0.0": +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-duplicate-keys@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz" integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== @@ -605,14 +680,14 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-flow" "^7.18.6" -"@babel/plugin-transform-for-of@^7.0.0": +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.21.5": version "7.21.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz" integrity sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ== dependencies: "@babel/helper-plugin-utils" "^7.21.5" -"@babel/plugin-transform-function-name@^7.0.0": +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.18.9": version "7.18.9" resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz" integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== @@ -621,21 +696,29 @@ "@babel/helper-function-name" "^7.18.9" "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-literals@^7.0.0": +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.18.9": version "7.18.9" resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz" integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-member-expression-literals@^7.0.0": +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz" integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8": +"@babel/plugin-transform-modules-amd@^7.20.11": + version "7.20.11" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz" + integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== + dependencies: + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.21.5": version "7.21.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz" integrity sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ== @@ -644,7 +727,25 @@ "@babel/helper-plugin-utils" "^7.21.5" "@babel/helper-simple-access" "^7.21.5" -"@babel/plugin-transform-named-capturing-groups-regex@^7.0.0": +"@babel/plugin-transform-modules-systemjs@^7.20.11": + version "7.20.11" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz" + integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== + dependencies: + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-identifier" "^7.19.1" + +"@babel/plugin-transform-modules-umd@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== + dependencies: + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.0.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.20.5": version "7.20.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz" integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== @@ -652,6 +753,13 @@ "@babel/helper-create-regexp-features-plugin" "^7.20.5" "@babel/helper-plugin-utils" "^7.20.2" +"@babel/plugin-transform-new-target@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-transform-object-assign@^7.0.0": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.18.6.tgz" @@ -659,7 +767,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-object-super@^7.0.0": +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz" integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== @@ -667,14 +775,14 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-replace-supers" "^7.18.6" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7": +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3": version "7.21.3" resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz" integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ== dependencies: "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-property-literals@^7.0.0": +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz" integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== @@ -713,7 +821,7 @@ "@babel/plugin-syntax-jsx" "^7.18.6" "@babel/types" "^7.20.7" -"@babel/plugin-transform-regenerator@^7.0.0": +"@babel/plugin-transform-regenerator@^7.0.0", "@babel/plugin-transform-regenerator@^7.21.5": version "7.21.5" resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz" integrity sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w== @@ -721,6 +829,13 @@ "@babel/helper-plugin-utils" "^7.21.5" regenerator-transform "^0.15.1" +"@babel/plugin-transform-reserved-words@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-transform-runtime@^7.0.0": version "7.19.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz" @@ -733,14 +848,14 @@ babel-plugin-polyfill-regenerator "^0.4.1" semver "^6.3.0" -"@babel/plugin-transform-shorthand-properties@^7.0.0": +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz" integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-spread@^7.0.0": +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz" integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== @@ -748,20 +863,27 @@ "@babel/helper-plugin-utils" "^7.20.2" "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" -"@babel/plugin-transform-sticky-regex@^7.0.0": +"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz" integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-template-literals@^7.0.0": +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.18.9": version "7.18.9" resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz" integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== dependencies: "@babel/helper-plugin-utils" "^7.18.9" +"@babel/plugin-transform-typeof-symbol@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-transform-typescript@^7.18.6", "@babel/plugin-transform-typescript@^7.5.0": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.7.tgz" @@ -771,7 +893,14 @@ "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-typescript" "^7.20.0" -"@babel/plugin-transform-unicode-regex@^7.0.0": +"@babel/plugin-transform-unicode-escapes@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz" + integrity sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg== + dependencies: + "@babel/helper-plugin-utils" "^7.21.5" + +"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz" integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== @@ -779,6 +908,88 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" +"@babel/preset-env@^7.1.6": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz" + integrity sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg== + dependencies: + "@babel/compat-data" "^7.21.5" + "@babel/helper-compilation-targets" "^7.21.5" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-validator-option" "^7.21.0" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.20.7" + "@babel/plugin-proposal-async-generator-functions" "^7.20.7" + "@babel/plugin-proposal-class-properties" "^7.18.6" + "@babel/plugin-proposal-class-static-block" "^7.21.0" + "@babel/plugin-proposal-dynamic-import" "^7.18.6" + "@babel/plugin-proposal-export-namespace-from" "^7.18.9" + "@babel/plugin-proposal-json-strings" "^7.18.6" + "@babel/plugin-proposal-logical-assignment-operators" "^7.20.7" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" + "@babel/plugin-proposal-numeric-separator" "^7.18.6" + "@babel/plugin-proposal-object-rest-spread" "^7.20.7" + "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" + "@babel/plugin-proposal-optional-chaining" "^7.21.0" + "@babel/plugin-proposal-private-methods" "^7.18.6" + "@babel/plugin-proposal-private-property-in-object" "^7.21.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.20.0" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-transform-arrow-functions" "^7.21.5" + "@babel/plugin-transform-async-to-generator" "^7.20.7" + "@babel/plugin-transform-block-scoped-functions" "^7.18.6" + "@babel/plugin-transform-block-scoping" "^7.21.0" + "@babel/plugin-transform-classes" "^7.21.0" + "@babel/plugin-transform-computed-properties" "^7.21.5" + "@babel/plugin-transform-destructuring" "^7.21.3" + "@babel/plugin-transform-dotall-regex" "^7.18.6" + "@babel/plugin-transform-duplicate-keys" "^7.18.9" + "@babel/plugin-transform-exponentiation-operator" "^7.18.6" + "@babel/plugin-transform-for-of" "^7.21.5" + "@babel/plugin-transform-function-name" "^7.18.9" + "@babel/plugin-transform-literals" "^7.18.9" + "@babel/plugin-transform-member-expression-literals" "^7.18.6" + "@babel/plugin-transform-modules-amd" "^7.20.11" + "@babel/plugin-transform-modules-commonjs" "^7.21.5" + "@babel/plugin-transform-modules-systemjs" "^7.20.11" + "@babel/plugin-transform-modules-umd" "^7.18.6" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.20.5" + "@babel/plugin-transform-new-target" "^7.18.6" + "@babel/plugin-transform-object-super" "^7.18.6" + "@babel/plugin-transform-parameters" "^7.21.3" + "@babel/plugin-transform-property-literals" "^7.18.6" + "@babel/plugin-transform-regenerator" "^7.21.5" + "@babel/plugin-transform-reserved-words" "^7.18.6" + "@babel/plugin-transform-shorthand-properties" "^7.18.6" + "@babel/plugin-transform-spread" "^7.20.7" + "@babel/plugin-transform-sticky-regex" "^7.18.6" + "@babel/plugin-transform-template-literals" "^7.18.9" + "@babel/plugin-transform-typeof-symbol" "^7.18.9" + "@babel/plugin-transform-unicode-escapes" "^7.21.5" + "@babel/plugin-transform-unicode-regex" "^7.18.6" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.21.5" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + core-js-compat "^3.25.1" + semver "^6.3.0" + "@babel/preset-flow@^7.13.13": version "7.18.6" resolved "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.18.6.tgz" @@ -788,6 +999,17 @@ "@babel/helper-validator-option" "^7.18.6" "@babel/plugin-transform-flow-strip-types" "^7.18.6" +"@babel/preset-modules@^0.1.5": + version "0.1.5" + resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz" + integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + "@babel/preset-typescript@^7.13.0": version "7.18.6" resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz" @@ -809,33 +1031,22 @@ source-map-support "^0.5.16" "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz" - integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ== - dependencies: - regenerator-runtime "^0.13.11" + version "7.28.4" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz" + integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ== -"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3": - version "7.20.7" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz" - integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== +"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.22.15", "@babel/template@^7.27.2", "@babel/template@^7.3.3": + version "7.27.2" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz" + integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw== dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - -"@babel/template@^7.22.15": - version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.23.9.tgz#f881d0487cba2828d3259dcb9ef5005a9731011a" - integrity sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA== - dependencies: - "@babel/code-frame" "^7.23.5" - "@babel/parser" "^7.23.9" - "@babel/types" "^7.23.9" + "@babel/code-frame" "^7.27.1" + "@babel/parser" "^7.27.2" + "@babel/types" "^7.27.1" "@babel/traverse@^7.1.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.21.5", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.4": version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.9.tgz#2f9d6aead6b564669394c5ce0f9302bb65b9d950" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz" integrity sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg== dependencies: "@babel/code-frame" "^7.23.5" @@ -849,23 +1060,13 @@ debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.7.0": - version "7.21.5" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz" - integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== - dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.23.9": - version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.9.tgz#1dd7b59a9a2b5c87f8b41e52770b5ecbf492e002" - integrity sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q== +"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.23.9", "@babel/types@^7.27.1", "@babel/types@^7.28.4", "@babel/types@^7.28.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.28.5" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz" + integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA== dependencies: - "@babel/helper-string-parser" "^7.23.4" - "@babel/helper-validator-identifier" "^7.22.20" - to-fast-properties "^2.0.0" + "@babel/helper-string-parser" "^7.27.1" + "@babel/helper-validator-identifier" "^7.28.5" "@bcoe/v8-coverage@^0.2.3": version "0.2.3" @@ -1160,7 +1361,7 @@ resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@1.4.14": version "1.4.14" resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== @@ -1181,7 +1382,7 @@ "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": +"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": version "2.0.5" resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== @@ -1434,7 +1635,7 @@ "@react-navigation/elements" "^1.3.12" warn-once "^0.1.0" -"@react-navigation/native@^6.1.1": +"@react-navigation/native@^6.0.0", "@react-navigation/native@^6.1.1": version "6.1.1" resolved "https://registry.npmjs.org/@react-navigation/native/-/native-6.1.1.tgz" integrity sha512-iIozx9c66EjSFyzKrZPixnk6vBuivYXp0jmbKCJXNIa7MY+8OLx9CXj/+1py/l/OGlXDhI6jiUWWetOfOtMaBQ== @@ -1624,7 +1825,7 @@ dependencies: "@types/react" "^17" -"@types/react@*", "@types/react@^17": +"@types/react@*", "@types/react@^16.8 || ^17.0 || ^18.0", "@types/react@^17", "@types/react@>=16.8": version "17.0.52" resolved "https://registry.npmjs.org/@types/react/-/react-17.0.52.tgz" integrity sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A== @@ -1710,7 +1911,7 @@ eslint-scope "^5.0.0" eslint-utils "^2.0.0" -"@typescript-eslint/parser@^3.1.0": +"@typescript-eslint/parser@^3.0.0", "@typescript-eslint/parser@^3.1.0": version "3.10.1" resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-3.10.1.tgz" integrity sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw== @@ -1721,7 +1922,7 @@ "@typescript-eslint/typescript-estree" "3.10.1" eslint-visitor-keys "^1.1.0" -"@typescript-eslint/parser@^5.37.0": +"@typescript-eslint/parser@^5.0.0", "@typescript-eslint/parser@^5.37.0": version "5.47.0" resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.47.0.tgz" integrity sha512-udPU4ckK+R1JWCGdQC4Qa27NtBg7w020ffHqGyAK8pAgOVuNw7YaKXGChk+udh+iiGIJf6/E/0xhVXyPAbsczw== @@ -1832,7 +2033,7 @@ absolute-path@^0.0.0: resolved "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz" integrity sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA== -accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.7: +accepts@^1.3.7, accepts@~1.3.7: version "1.3.8" resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== @@ -1858,7 +2059,7 @@ acorn-walk@^7.1.1: resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== -acorn@^7.1.1, acorn@^7.4.0: +"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^7.1.1, acorn@^7.4.0: version "7.4.1" resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== @@ -1938,7 +2139,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-styles@^4.0.0, ansi-styles@^4.1.0: +ansi-styles@^4.0.0: + version "4.3.0" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -2080,12 +2288,12 @@ atob@^2.1.2: integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== axios@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.0.tgz#f1e5292f26b2fd5c2e66876adc5b06cdbd7d2102" - integrity sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg== + version "1.12.2" + resolved "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz" + integrity sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw== dependencies: - follow-redirects "^1.15.0" - form-data "^4.0.0" + follow-redirects "^1.15.6" + form-data "^4.0.4" proxy-from-env "^1.1.0" babel-core@^7.0.0-bridge.0: @@ -2233,11 +2441,6 @@ balanced-match@^1.0.0: resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -base64-js@^1.1.2, base64-js@^1.3.1, base64-js@^1.5.1: - version "1.5.1" - resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - base@^0.11.1: version "0.11.2" resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz" @@ -2251,6 +2454,11 @@ base@^0.11.1: mixin-deep "^1.2.0" pascalcase "^0.1.1" +base64-js@^1.1.2, base64-js@^1.3.1, base64-js@^1.5.1: + version "1.5.1" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + big-integer@1.6.x: version "1.6.51" resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz" @@ -2280,9 +2488,9 @@ bplist-parser@0.3.1: big-integer "1.6.x" brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + version "1.1.12" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz" + integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" @@ -2303,19 +2511,19 @@ braces@^2.3.1: split-string "^3.0.2" to-regex "^3.0.1" -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: - fill-range "^7.0.1" + fill-range "^7.1.1" browser-process-hrtime@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== -browserslist@^4.21.3, browserslist@^4.21.4: +browserslist@^4.21.3, browserslist@^4.21.4, "browserslist@>= 4.21.0": version "4.21.4" resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz" integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== @@ -2345,10 +2553,10 @@ buffer@^5.5.0: base64-js "^1.3.1" ieee754 "^1.1.13" -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== cache-base@^1.0.1: version "1.0.1" @@ -2365,6 +2573,14 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" +call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" @@ -2419,7 +2635,7 @@ capture-exit@^2.0.0: dependencies: rsvp "^4.8.4" -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: +chalk@^2.0.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -2428,7 +2644,15 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: +chalk@^4.0.0: + version "4.1.2" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -2549,16 +2773,16 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - color-name@~1.1.4: version "1.1.4" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + colorette@^1.0.7: version "1.4.0" resolved "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz" @@ -2596,7 +2820,7 @@ component-emitter@^1.2.1: resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== -compressible@~2.0.16: +compressible@~2.0.18: version "2.0.18" resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== @@ -2604,16 +2828,16 @@ compressible@~2.0.16: mime-db ">= 1.43.0 < 2" compression@^1.7.1: - version "1.7.4" - resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + version "1.8.1" + resolved "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz" + integrity sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w== dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" + bytes "3.1.2" + compressible "~2.0.18" debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" + negotiator "~0.6.4" + on-headers "~1.1.0" + safe-buffer "5.2.1" vary "~1.1.2" concat-map@0.0.1: @@ -2664,9 +2888,9 @@ cosmiconfig@^5.0.5, cosmiconfig@^5.1.0: parse-json "^4.0.0" cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + version "6.0.6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz" + integrity sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw== dependencies: nice-try "^1.0.4" path-key "^2.0.1" @@ -2675,9 +2899,9 @@ cross-spawn@^6.0.0: which "^1.2.9" cross-spawn@^7.0.0, cross-spawn@^7.0.2: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.6" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" + integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -2719,20 +2943,34 @@ dayjs@^1.8.15: resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz" integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ== -debug@2.6.9, debug@^2.2.0, debug@^2.3.3: +debug@^2.2.0: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^2.3.3: version "2.6.9" resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: +debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4, debug@4: version "4.3.4" resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" +debug@2.6.9: + version "2.6.9" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + decamelize@^1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" @@ -2867,6 +3105,15 @@ domexception@^2.0.1: dependencies: webidl-conversions "^5.0.0" +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + ee-first@1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" @@ -2892,6 +3139,11 @@ encodeurl@~1.0.2: resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encodeurl@~2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" + integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== + end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" @@ -2964,6 +3216,33 @@ es-abstract@^1.19.0, es-abstract@^1.20.4: string.prototype.trimstart "^1.0.6" unbox-primitive "^1.0.2" +es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" + integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== + dependencies: + es-errors "^1.3.0" + get-intrinsic "^1.2.6" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + es-shim-unscopables@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz" @@ -3098,7 +3377,14 @@ eslint-scope@^5.0.0, eslint-scope@^5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-utils@^2.0.0, eslint-utils@^2.1.0: +eslint-utils@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz" integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== @@ -3112,7 +3398,17 @@ eslint-utils@^3.0.0: dependencies: eslint-visitor-keys "^2.0.0" -eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: +eslint-visitor-keys@^1.0.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^1.1.0: + version "1.3.0" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^1.3.0: version "1.3.0" resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== @@ -3127,7 +3423,7 @@ eslint-visitor-keys@^3.3.0: resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== -eslint@^7.32.0: +eslint@*, "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^3.17.0 || ^4 || ^5 || ^6 || ^7", "eslint@^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", eslint@^7.32.0, "eslint@>= 4.12.1", "eslint@>= 5.0.0", eslint@>=2.0.0, eslint@>=3.14.1, eslint@>=4.19.1, eslint@>=5, eslint@>=6: version "7.32.0" resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz" integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== @@ -3380,10 +3676,10 @@ fill-range@^4.0.0: repeat-string "^1.6.1" to-regex-range "^2.1.0" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" @@ -3442,15 +3738,15 @@ flatted@^3.1.0: resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== -flow-parser@0.*, flow-parser@^0.121.0: +flow-parser@^0.121.0, flow-parser@0.*: version "0.121.0" resolved "https://registry.npmjs.org/flow-parser/-/flow-parser-0.121.0.tgz" integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg== -follow-redirects@^1.15.0: - version "1.15.5" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.5.tgz#54d4d6d062c0fa7d9d17feb008461550e3ba8020" - integrity sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw== +follow-redirects@^1.15.6: + version "1.15.11" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz" + integrity sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ== for-in@^1.0.2: version "1.0.2" @@ -3458,21 +3754,25 @@ for-in@^1.0.2: integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + version "3.0.4" + resolved "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz" + integrity sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" - mime-types "^2.1.12" + es-set-tostringtag "^2.1.0" + hasown "^2.0.2" + mime-types "^2.1.35" -form-data@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz" - integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== +form-data@^4.0.4: + version "4.0.4" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz" + integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow== dependencies: asynckit "^0.4.0" combined-stream "^1.0.8" + es-set-tostringtag "^2.1.0" + hasown "^2.0.2" mime-types "^2.1.12" fragment-cache@^0.2.1: @@ -3515,10 +3815,10 @@ fsevents@^2.1.2, fsevents@^2.3.2: resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function-bind@^1.1.1, function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== function.prototype.name@^1.1.5: version "1.1.5" @@ -3550,20 +3850,35 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz" - integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.3" +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.6: + version "1.3.0" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" get-package-type@^0.1.0: version "0.1.0" resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== +get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + get-stdin@^6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz" @@ -3620,7 +3935,14 @@ globals@^11.1.0: resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^13.6.0, globals@^13.9.0: +globals@^13.6.0: + version "13.19.0" + resolved "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz" + integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ== + dependencies: + type-fest "^0.20.2" + +globals@^13.9.0: version "13.19.0" resolved "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz" integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ== @@ -3639,12 +3961,10 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.10" @@ -3678,17 +3998,17 @@ has-property-descriptors@^1.0.0: dependencies: get-intrinsic "^1.1.1" -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-symbols@^1.0.2, has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: - has-symbols "^1.0.2" + has-symbols "^1.0.3" has-value@^0.3.1: version "0.3.1" @@ -3728,6 +4048,13 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + hermes-engine@~0.11.0: version "0.11.0" resolved "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.11.0.tgz" @@ -3873,7 +4200,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: +inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@2, inherits@2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -3896,7 +4223,7 @@ invariant@*, invariant@^2.2.4: ip@^1.1.5: version "1.1.9" - resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.9.tgz#8dfbcc99a754d07f425310b86a99546b1151e396" + resolved "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz" integrity sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ== is-accessor-descriptor@^0.1.6: @@ -4011,6 +4338,11 @@ is-extendable@^0.1.0, is-extendable@^0.1.1: resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== +is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + is-extendable@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" @@ -4164,7 +4496,7 @@ is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" -isarray@1.0.0, isarray@~1.0.0: +isarray@~1.0.0, isarray@1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== @@ -4478,7 +4810,7 @@ jest-resolve-dependencies@^26.6.3: jest-regex-util "^26.0.0" jest-snapshot "^26.6.2" -jest-resolve@^26.6.2: +jest-resolve@*, jest-resolve@^26.6.2: version "26.6.2" resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz" integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ== @@ -4819,7 +5151,14 @@ jsonfile@^4.0.0: array-includes "^3.1.5" object.assign "^4.1.3" -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: +kind-of@^3.0.2, kind-of@^3.0.3: + version "3.2.2" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + +kind-of@^3.2.0: version "3.2.2" resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== @@ -4966,7 +5305,15 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -make-dir@^2.0.0, make-dir@^2.1.0: +make-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== @@ -5000,6 +5347,11 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + merge-options@^3.0.4: version "3.0.4" resolved "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz" @@ -5041,7 +5393,7 @@ metro-cache@0.67.0: mkdirp "^0.5.1" rimraf "^2.5.4" -metro-config@0.67.0, metro-config@^0.67.0: +metro-config@^0.67.0, metro-config@0.67.0: version "0.67.0" resolved "https://registry.npmjs.org/metro-config/-/metro-config-0.67.0.tgz" integrity sha512-ThAwUmzZwTbKyyrIn2bKIcJDPDBS0LKAbqJZQioflvBGfcgA21h3fdL3IxRmvCEl6OnkEWI0Tn1Z9w2GLAjf2g== @@ -5053,7 +5405,7 @@ metro-config@0.67.0, metro-config@^0.67.0: metro-core "0.67.0" metro-runtime "0.67.0" -metro-core@0.67.0, metro-core@^0.67.0: +metro-core@^0.67.0, metro-core@0.67.0: version "0.67.0" resolved "https://registry.npmjs.org/metro-core/-/metro-core-0.67.0.tgz" integrity sha512-TOa/ShE1bUq83fGNfV6rFwyfZ288M8ydmWN3g9C2OW8emOHLhJslYD/SIU4DhDkP/99yaJluIALdZ2g0+pCrvQ== @@ -5175,7 +5527,7 @@ metro-react-native-babel-preset@0.72.3: "@babel/template" "^7.0.0" react-refresh "^0.4.0" -metro-react-native-babel-transformer@0.67.0, metro-react-native-babel-transformer@^0.67.0: +metro-react-native-babel-transformer@^0.67.0, metro-react-native-babel-transformer@0.67.0: version "0.67.0" resolved "https://registry.npmjs.org/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.67.0.tgz" integrity sha512-P0JT09n7T01epUtgL9mH6BPat3xn4JjBakl4lWHdL61cvEGcrxuIom1eoFFKkgU/K5AVLU4aCAttHS7nSFCcEQ== @@ -5188,14 +5540,14 @@ metro-react-native-babel-transformer@0.67.0, metro-react-native-babel-transforme metro-source-map "0.67.0" nullthrows "^1.1.1" -metro-resolver@0.67.0, metro-resolver@^0.67.0: +metro-resolver@^0.67.0, metro-resolver@0.67.0: version "0.67.0" resolved "https://registry.npmjs.org/metro-resolver/-/metro-resolver-0.67.0.tgz" integrity sha512-d2KS/zAyOA/z/q4/ff41rAp+1txF4H6qItwpsls/RHStV2j6PqgRHUzq/3ga+VIeoUJntYJ8nGW3+3qSrhFlig== dependencies: absolute-path "^0.0.0" -metro-runtime@0.67.0, metro-runtime@^0.67.0: +metro-runtime@^0.67.0, metro-runtime@0.67.0: version "0.67.0" resolved "https://registry.npmjs.org/metro-runtime/-/metro-runtime-0.67.0.tgz" integrity sha512-IFtSL0JUt1xK3t9IoLflTDft82bjieSzdIJWLzrRzBMlesz8ox5bVmnpQbVQEwfYUpEOxbM3VOZauVbdCmXA7g== @@ -5256,7 +5608,7 @@ metro-transform-worker@0.67.0: metro-transform-plugins "0.67.0" nullthrows "^1.1.1" -metro@0.67.0, metro@^0.67.0: +metro@^0.67.0, metro@0.67.0: version "0.67.0" resolved "https://registry.npmjs.org/metro/-/metro-0.67.0.tgz" integrity sha512-DwuBGAFcAivoac/swz8Lp7Y5Bcge1tzT7T6K0nf1ubqJP8YzBUtyR4pkjEYVUzVu/NZf7O54kHSPVu1ibYzOBQ== @@ -5313,7 +5665,26 @@ metro@0.67.0, metro@^0.67.0: ws "^7.5.1" yargs "^15.3.1" -micromatch@^3.1.10, micromatch@^3.1.4: +micromatch@^3.1.10: + version "3.1.10" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +micromatch@^3.1.4: version "3.1.10" resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== @@ -5333,35 +5704,35 @@ micromatch@^3.1.10, micromatch@^3.1.4: to-regex "^3.0.2" micromatch@^4.0.2, micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + version "4.0.8" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" + integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: - braces "^3.0.2" + braces "^3.0.3" picomatch "^2.3.1" -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": +"mime-db@>= 1.43.0 < 2", mime-db@1.52.0: version "1.52.0" resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.34: +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.35, mime-types@~2.1.34: version "2.1.35" resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime@1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - mime@^2.4.1: version "2.6.0" resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== +mime@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz" @@ -5415,9 +5786,9 @@ ms@2.1.3: integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== nanoid@^3.1.23: - version "3.3.4" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" - integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + version "3.3.11" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz" + integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== nanomatch@^1.2.9: version "1.2.13" @@ -5446,6 +5817,11 @@ natural-compare@^1.4.0: resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== +negotiator@~0.6.4: + version "0.6.4" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz" + integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w== + negotiator@0.6.3: version "0.6.3" resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" @@ -5641,13 +6017,6 @@ object.values@^1.1.6: define-properties "^1.1.4" es-abstract "^1.20.4" -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - on-finished@~2.3.0: version "2.3.0" resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" @@ -5655,10 +6024,17 @@ on-finished@~2.3.0: dependencies: ee-first "1.1.1" -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz" + integrity sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A== once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" @@ -5855,10 +6231,10 @@ path-type@^4.0.0: resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.0, picocolors@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: version "2.3.1" @@ -5919,7 +6295,7 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^2.0.2: +prettier@^2.0.2, "prettier@>= 1.13.0": version "2.8.1" resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz" integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg== @@ -6018,7 +6394,7 @@ range-parser@~1.2.1: react-devtools-core@^4.23.0: version "4.28.5" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.5.tgz#c8442b91f068cdf0c899c543907f7f27d79c2508" + resolved "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.28.5.tgz" integrity sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA== dependencies: shell-quote "^1.6.1" @@ -6034,7 +6410,12 @@ react-freeze@^1.0.0: resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -react-is@^17.0.1, react-is@^17.0.2: +react-is@^17.0.1: + version "17.0.2" + resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-is@^17.0.2: version "17.0.2" resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== @@ -6044,7 +6425,7 @@ react-is@^18.0.0: resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz" integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== -react-native-camera@^4.2.1: +react-native-camera@^4.2.1, react-native-camera@>=1.0.2: version "4.2.1" resolved "https://registry.npmjs.org/react-native-camera/-/react-native-camera-4.2.1.tgz" integrity sha512-+Vkql24PFYQfsPRznJCvPwJQfyzCnjlcww/iZ4Ej80bgivKjL9eU0IMQIXp4yi6XCrKi4voWXxIDPMupQZKeIQ== @@ -6096,12 +6477,12 @@ react-native-qrcode-scanner@^1.5.5: prop-types "^15.5.10" react-native-permissions "^2.0.2" -react-native-safe-area-context@^4.4.1: +react-native-safe-area-context@^4.4.1, "react-native-safe-area-context@>= 3.0.0": version "4.4.1" resolved "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-4.4.1.tgz" integrity sha512-N9XTjiuD73ZpVlejHrUWIFZc+6Z14co1K/p1IFMkImU7+avD69F3y+lhkqA2hN/+vljdZrBSiOwXPkuo43nFQA== -react-native-screens@^3.18.2: +react-native-screens@^3.18.2, "react-native-screens@>= 3.0.0": version "3.18.2" resolved "https://registry.npmjs.org/react-native-screens/-/react-native-screens-3.18.2.tgz" integrity sha512-ANUEuvMUlsYJ1QKukEhzhfrvOUO9BVH9Nzg+6eWxpn3cfD/O83yPBOF8Mx6x5H/2+sMy+VS5x/chWOOo/U7QJw== @@ -6122,7 +6503,7 @@ react-native-vector-icons@^9.2.0: prop-types "^15.7.2" yargs "^16.1.1" -react-native@0.68.5: +react-native@*, "react-native@^0.0.0-0 || 0.60 - 0.71 || 1000.0.0", react-native@>=0.59, react-native@>=0.60.0, react-native@>=0.63.3, react-native@0.68.5: version "0.68.5" resolved "https://registry.npmjs.org/react-native/-/react-native-0.68.5.tgz" integrity sha512-t3kiQ/gumFV+0r/NRSIGtYxanjY4da0utFqHgkMcRPJVwXFWC0Fr8YiOeRGYO1dp8EfrSsOjtfWic/inqVYlbQ== @@ -6177,7 +6558,7 @@ react-refresh@^0.4.0: resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.4.3.tgz" integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA== -react-shallow-renderer@16.14.1, react-shallow-renderer@^16.13.1: +react-shallow-renderer@^16.13.1, react-shallow-renderer@16.14.1: version "16.14.1" resolved "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.14.1.tgz" integrity sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg== @@ -6195,7 +6576,7 @@ react-test-renderer@17.0.2: react-shallow-renderer "^16.13.1" scheduler "^0.20.2" -react@17.0.2: +react@*, "react@^16.0.0 || ^17.0.0", "react@^16.8 || ^17.0 || ^18.0", "react@^16.8.0 || ^17.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", react@>=16.13.1, react@>=16.8, react@>=16.8.6, react@>=17.0.0, react@17.0.2: version "17.0.2" resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz" integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== @@ -6259,7 +6640,7 @@ recast@^0.20.4: source-map "~0.6.1" tslib "^2.0.1" -redux@^4.2.0: +redux@^4, redux@^4.2.0: version "4.2.0" resolved "https://registry.npmjs.org/redux/-/redux-4.2.0.tgz" integrity sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA== @@ -6278,7 +6659,7 @@ regenerate@^1.4.2: resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.2: +regenerator-runtime@^0.13.2: version "0.13.11" resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== @@ -6480,11 +6861,16 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== +safe-buffer@5.2.1: + version "5.2.1" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + safe-regex-test@^1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz" @@ -6541,27 +6927,51 @@ scheduler@^0.20.2: loose-envify "^1.1.0" object-assign "^4.1.1" -"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: +semver@^5.5.0: version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^5.6.0: + version "5.7.2" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: version "6.3.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.2.1, semver@^7.3.2, semver@^7.3.7: +semver@^7.2.1: + version "7.6.0" + resolved "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + +semver@^7.3.2: + version "7.6.0" + resolved "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + +semver@^7.3.7: version "7.6.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + resolved "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz" integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== dependencies: lru-cache "^6.0.0" -send@0.18.0: - version "0.18.0" - resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== +"semver@2 || 3 || 4 || 5": + version "5.7.2" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +send@0.19.0: + version "0.19.0" + resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz" + integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" depd "2.0.0" @@ -6583,14 +6993,14 @@ serialize-error@^2.1.0: integrity sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw== serve-static@^1.13.1: - version "1.15.0" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + version "1.16.2" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz" + integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw== dependencies: - encodeurl "~1.0.2" + encodeurl "~2.0.0" escape-html "~1.0.3" parseurl "~1.3.3" - send "0.18.0" + send "0.19.0" set-blocking@^2.0.0: version "2.0.0" @@ -6843,16 +7253,16 @@ static-extend@^0.1.1: define-property "^0.2.5" object-copy "^0.1.0" -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - statuses@~1.5.0: version "1.5.0" resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + stream-buffers@2.2.x: version "2.2.0" resolved "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz" @@ -6863,6 +7273,13 @@ strict-uri-encode@^2.0.0: resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz" integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== +string_decoder@^1.1.1, string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + string-length@^4.0.1: version "4.0.2" resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz" @@ -6912,14 +7329,14 @@ string.prototype.trimstart@^1.0.6: define-properties "^1.1.4" es-abstract "^1.20.4" -string_decoder@^1.1.1, string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== +strip-ansi@^5.0.0: + version "5.2.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== dependencies: - safe-buffer "~5.1.0" + ansi-regex "^4.1.0" -strip-ansi@^5.0.0, strip-ansi@^5.2.0: +strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== @@ -6965,7 +7382,14 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -supports-color@^7.0.0, supports-color@^7.1.0: +supports-color@^7.0.0: + version "7.2.0" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-color@^7.1.0: version "7.2.0" resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== @@ -7008,6 +7432,13 @@ table@^6.0.9: string-width "^4.2.3" strip-ansi "^6.0.1" +temp@^0.8.4: + version "0.8.4" + resolved "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz" + integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== + dependencies: + rimraf "~2.6.2" + temp@0.8.3: version "0.8.3" resolved "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz" @@ -7016,13 +7447,6 @@ temp@0.8.3: os-tmpdir "^1.0.0" rimraf "~2.2.6" -temp@^0.8.4: - version "0.8.4" - resolved "https://registry.npmjs.org/temp/-/temp-0.8.4.tgz" - integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== - dependencies: - rimraf "~2.6.2" - terminal-link@^2.0.0: version "2.1.1" resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" @@ -7063,11 +7487,6 @@ tmpl@1.0.5: resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz" integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - to-object-path@^0.3.0: version "0.3.0" resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" @@ -7107,7 +7526,7 @@ toidentifier@1.0.1: tough-cookie@^4.0.0: version "4.1.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" + resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz" integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== dependencies: psl "^1.1.33" @@ -7195,7 +7614,7 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typescript@^4.8.3: +typescript@^4.8.3, "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta": version "4.9.4" resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz" integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg== @@ -7314,7 +7733,7 @@ use-latest-callback@^0.1.5: dependencies: object-assign "^4.1.1" -use-sync-external-store@1.2.0, use-sync-external-store@^1.0.0: +use-sync-external-store@^1.0.0, use-sync-external-store@1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz" integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== @@ -7490,7 +7909,7 @@ which@^2.0.1, which@^2.0.2: word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.5" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz" integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== wrap-ansi@^6.2.0: @@ -7536,16 +7955,16 @@ write-file-atomic@^3.0.0: typedarray-to-buffer "^3.1.5" ws@^6.1.4: - version "6.2.2" - resolved "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz" - integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + version "6.2.3" + resolved "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz" + integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA== dependencies: async-limiter "~1.0.0" ws@^7, ws@^7.4.6, ws@^7.5.1: - version "7.5.9" - resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz" - integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + version "7.5.10" + resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz" + integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ== xcode@^3.0.0: version "3.0.1" diff --git a/sample-apps/rnhms-callkeep-demo/README.md b/sample-apps/rnhms-callkeep-demo/README.md index 10d9ee658..0504e5b1e 100644 --- a/sample-apps/rnhms-callkeep-demo/README.md +++ b/sample-apps/rnhms-callkeep-demo/README.md @@ -6,9 +6,27 @@ with [100ms React Native SDK](https://github.com/100mslive/react-native-hms). The app has implemented basic video call conferencing using `v1.6.2` of the `100mslive/react-native-hms` library. It uses [Room Code](https://www.100ms.live/docs/react-native/v2/quickstart/token#get-room-code-from-100ms-dashboard) for generating 100ms Auth Token. - > Important Note: React Native Callkeep library and Firebase support are added only for Android. Therefore, the iOS build can only be made on the `main` branch. +## Requirements + +### Minimum Configuration + +- React Native 0.73.0 or above +- Java 17 or above +- Android API level 24 or above +- Xcode 14 or above +- iOS 16 or above +- Node.js 22 or above + +### Recommended Configuration + +- React Native 0.77.3 or above +- Java 17 or above +- Android API level 35 or above +- Xcode 15 or above +- iOS 16 or above +- Node.js 22 or above ## Showcase Video of the App @@ -19,7 +37,6 @@ https://github.com/stanwolverine/rnhms-callkeep-demo/assets/45194090/23f06e6c-20 We will implement a basic feature in which the App can receive an incoming call and can answer it. When the user answers the incoming call, it should be able to successfully do conferencing calls with the caller. - ### 1. Implement 100ms React Native SDK in your app You can follow [100ms React Native quickstart guide](https://www.100ms.live/docs/react-native/v2/quickstart/quickstart) to quickly implement 100ms diff --git a/sample-apps/rnhms-callkeep-demo/package-lock.json b/sample-apps/rnhms-callkeep-demo/package-lock.json index 9915f1339..6fbfb7ca6 100644 --- a/sample-apps/rnhms-callkeep-demo/package-lock.json +++ b/sample-apps/rnhms-callkeep-demo/package-lock.json @@ -59,11 +59,13 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" @@ -107,14 +109,15 @@ } }, "node_modules/@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "dependencies": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" @@ -234,10 +237,19 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-hoist-variables": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "peer": true, "dependencies": { "@babel/types": "^7.18.6" }, @@ -371,17 +383,17 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", - "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "engines": { "node": ">=6.9.0" } @@ -409,35 +421,24 @@ } }, "node_modules/@babel/helpers": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", - "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "@babel/types": "^7.28.5" }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", - "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==", "bin": { "parser": "bin/babel-parser.js" }, @@ -1777,9 +1778,9 @@ } }, "node_modules/@babel/register/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "bin": { "semver": "bin/semver" } @@ -1790,57 +1791,50 @@ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" }, "node_modules/@babel/runtime": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", - "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", - "dependencies": { - "regenerator-runtime": "^0.13.11" - }, + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "dependencies": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", - "debug": "^4.1.0", - "globals": "^11.1.0" + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", - "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "dependencies": { - "@babel/helper-string-parser": "^7.21.5", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -2649,16 +2643,12 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/resolve-uri": { @@ -2669,33 +2659,20 @@ "node": ">=6.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, "node_modules/@react-native-async-storage/async-storage": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/@react-native-async-storage/async-storage/-/async-storage-1.18.1.tgz", @@ -2901,9 +2878,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/@react-native-community/cli-platform-android/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -2979,9 +2956,9 @@ } }, "node_modules/@react-native-community/cli-platform-android/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "bin": { "semver": "bin/semver" } @@ -3353,9 +3330,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/@react-native-community/cli/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -3368,9 +3345,9 @@ } }, "node_modules/@react-native-community/cli/node_modules/cross-spawn/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "bin": { "semver": "bin/semver" } @@ -3836,26 +3813,11 @@ } } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -3863,12 +3825,6 @@ "node": ">=10" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@typescript-eslint/experimental-utils": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", @@ -3961,26 +3917,11 @@ } } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -3988,12 +3929,6 @@ "node": ">=10" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@typescript-eslint/visitor-keys": { "version": "3.10.1", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", @@ -4383,12 +4318,12 @@ } }, "node_modules/axios": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz", - "integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", + "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", "proxy-from-env": "^1.1.0" } }, @@ -4741,20 +4676,20 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" @@ -4807,9 +4742,9 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "engines": { "node": ">= 0.8" } @@ -4846,6 +4781,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -5230,16 +5177,16 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { @@ -5259,6 +5206,33 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -5356,9 +5330,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "dependencies": { "path-key": "^3.1.0", @@ -5590,6 +5564,19 @@ "node": ">=8" } }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -5733,15 +5720,42 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -6236,26 +6250,11 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/eslint/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -6284,12 +6283,6 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/espree": { "version": "7.3.1", "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", @@ -6689,9 +6682,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -6816,9 +6809,9 @@ } }, "node_modules/find-cache-dir/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "bin": { "semver": "bin/semver" } @@ -6864,9 +6857,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", "funding": [ { "type": "individual", @@ -6900,12 +6893,14 @@ } }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", "mime-types": "^2.1.12" }, "engines": { @@ -6963,9 +6958,12 @@ } }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/function.prototype.name": { "version": "1.1.5", @@ -7017,15 +7015,23 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -7040,6 +7046,18 @@ "node": ">=8.0.0" } }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/get-stdin": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", @@ -7143,12 +7161,11 @@ } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -7219,10 +7236,9 @@ } }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "engines": { "node": ">= 0.4" }, @@ -7231,12 +7247,11 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -7303,6 +7318,17 @@ "node": ">=0.10.0" } }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/hermes-engine": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.9.0.tgz", @@ -7544,9 +7570,9 @@ } }, "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz", + "integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==" }, "node_modules/is-accessor-descriptor": { "version": "1.0.0", @@ -9274,26 +9300,11 @@ "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -9313,12 +9324,6 @@ "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/jest-util": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", @@ -9876,28 +9881,30 @@ } }, "node_modules/jsdom/node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", "dev": true, "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" }, "engines": { "node": ">= 6" } }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-parse-better-errors": { @@ -10117,6 +10124,14 @@ "node": ">=0.10.0" } }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", @@ -10591,11 +10606,11 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -10689,9 +10704,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "funding": [ { "type": "github", @@ -10827,28 +10842,12 @@ "which": "^2.0.2" } }, - "node_modules/node-notifier/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/node-notifier/node_modules/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, "optional": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -10856,13 +10855,6 @@ "node": ">=10" } }, - "node_modules/node-notifier/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "optional": true - }, "node_modules/node-releases": { "version": "2.0.10", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", @@ -10893,9 +10885,9 @@ } }, "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -11154,9 +11146,9 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", "engines": { "node": ">= 0.8" } @@ -11401,9 +11393,9 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -12031,9 +12023,9 @@ } }, "node_modules/react-native/node_modules/ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", "dependencies": { "async-limiter": "~1.0.0" } @@ -12575,9 +12567,9 @@ } }, "node_modules/sane/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -12734,9 +12726,9 @@ } }, "node_modules/sane/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "bin": { "semver": "bin/semver" } @@ -12810,17 +12802,17 @@ } }, "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "bin": { "semver": "bin/semver.js" } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -12897,19 +12889,27 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -13810,14 +13810,6 @@ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -13874,9 +13866,9 @@ } }, "node_modules/tough-cookie": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", - "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", "dev": true, "dependencies": { "psl": "^1.1.33", @@ -14471,9 +14463,9 @@ } }, "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "engines": { "node": ">=0.10.0" @@ -14578,9 +14570,9 @@ } }, "node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "engines": { "node": ">=8.3.0" }, @@ -14752,11 +14744,13 @@ } }, "@babel/code-frame": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", - "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "requires": { - "@babel/highlight": "^7.18.6" + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" } }, "@babel/compat-data": { @@ -14787,14 +14781,15 @@ } }, "@babel/generator": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz", - "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", "requires": { - "@babel/types": "^7.21.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" } }, "@babel/helper-annotate-as-pure": { @@ -14878,10 +14873,16 @@ "@babel/types": "^7.21.0" } }, + "@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==" + }, "@babel/helper-hoist-variables": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "peer": true, "requires": { "@babel/types": "^7.18.6" } @@ -14979,14 +14980,14 @@ } }, "@babel/helper-string-parser": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz", - "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==" + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" }, "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" }, "@babel/helper-validator-option": { "version": "7.21.0", @@ -15005,30 +15006,22 @@ } }, "@babel/helpers": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz", - "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==", + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", "requires": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.5", - "@babel/types": "^7.21.5" + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" } }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "@babel/types": "^7.28.5" } }, - "@babel/parser": { - "version": "7.21.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz", - "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==" - }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", @@ -15896,9 +15889,9 @@ } }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" } } }, @@ -15908,48 +15901,41 @@ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" }, "@babel/runtime": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", - "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", - "requires": { - "regenerator-runtime": "^0.13.11" - } + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" }, "@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" } }, "@babel/traverse": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz", - "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", "requires": { - "@babel/code-frame": "^7.21.4", - "@babel/generator": "^7.21.5", - "@babel/helper-environment-visitor": "^7.21.5", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.21.5", - "@babel/types": "^7.21.5", - "debug": "^4.1.0", - "globals": "^11.1.0" + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" } }, "@babel/types": { - "version": "7.21.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz", - "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", "requires": { - "@babel/helper-string-parser": "^7.21.5", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" } }, "@bcoe/v8-coverage": { @@ -16569,13 +16555,12 @@ } }, "@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "@jridgewell/resolve-uri": { @@ -16583,30 +16568,18 @@ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - }, "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" }, "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - }, - "dependencies": { - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - } + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@react-native-async-storage/async-storage": { @@ -16691,9 +16664,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -16703,9 +16676,9 @@ }, "dependencies": { "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" } } }, @@ -16911,9 +16884,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -16968,9 +16941,9 @@ "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" }, "shebang-command": { "version": "1.2.0", @@ -17517,28 +17490,10 @@ "tsutils": "^3.17.1" }, "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true } } @@ -17591,28 +17546,10 @@ "tsutils": "^3.17.1" }, "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true } } @@ -17905,12 +17842,12 @@ "dev": true }, "axios": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz", - "integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", + "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", "proxy-from-env": "^1.1.0" } }, @@ -18178,20 +18115,20 @@ } }, "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "requires": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" } }, "browser-process-hrtime": { @@ -18225,9 +18162,9 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" }, "cache-base": { "version": "1.0.1", @@ -18255,6 +18192,15 @@ "get-intrinsic": "^1.0.2" } }, + "call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + } + }, "caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -18549,16 +18495,16 @@ } }, "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "dependencies": { @@ -18574,6 +18520,16 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==" + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -18659,9 +18615,9 @@ } }, "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -18834,6 +18790,16 @@ } } }, + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "requires": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + } + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -18950,15 +18916,33 @@ "which-typed-array": "^1.1.9" } }, + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "requires": { + "es-errors": "^1.3.0" + } + }, "es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dev": true, + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" } }, "es-shim-unscopables": { @@ -19150,23 +19134,11 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true }, "supports-color": { "version": "7.2.0", @@ -19182,12 +19154,6 @@ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, @@ -19662,9 +19628,9 @@ } }, "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "requires": { "to-regex-range": "^5.0.1" } @@ -19761,9 +19727,9 @@ } }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" } } }, @@ -19799,9 +19765,9 @@ "integrity": "sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==" }, "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + "version": "1.15.11", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" }, "for-each": { "version": "0.3.3", @@ -19818,12 +19784,14 @@ "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" }, "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz", + "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==", "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", "mime-types": "^2.1.12" } }, @@ -19862,9 +19830,9 @@ "optional": true }, "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" }, "function.prototype.name": { "version": "1.1.5", @@ -19901,15 +19869,20 @@ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" }, "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dev": true, + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" } }, "get-package-type": { @@ -19918,6 +19891,15 @@ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "requires": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + } + }, "get-stdin": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", @@ -19985,13 +19967,9 @@ } }, "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" - } + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" }, "graceful-fs": { "version": "4.2.11", @@ -20040,18 +20018,16 @@ "dev": true }, "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" }, "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dev": true, + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "requires": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" } }, "has-value": { @@ -20101,6 +20077,14 @@ } } }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, "hermes-engine": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/hermes-engine/-/hermes-engine-0.9.0.tgz", @@ -20288,9 +20272,9 @@ } }, "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz", + "integrity": "sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==" }, "is-accessor-descriptor": { "version": "1.0.0", @@ -21561,23 +21545,11 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true }, "supports-color": { "version": "7.2.0", @@ -21587,12 +21559,6 @@ "requires": { "has-flag": "^4.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, @@ -22024,22 +21990,24 @@ "dev": true }, "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.4.tgz", + "integrity": "sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==", "dev": true, "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.35" } } } }, "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==" }, "json-parse-better-errors": { "version": "1.0.2", @@ -22213,6 +22181,11 @@ "object-visit": "^1.0.0" } }, + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + }, "merge-options": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-3.0.4.tgz", @@ -22643,11 +22616,11 @@ } }, "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "requires": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" } }, @@ -22711,9 +22684,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" }, "nanomatch": { "version": "1.2.13", @@ -22816,30 +22789,10 @@ "which": "^2.0.2" }, "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "optional": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", - "dev": true, - "optional": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", "dev": true, "optional": true } @@ -22868,9 +22821,9 @@ }, "dependencies": { "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true } } @@ -23063,9 +23016,9 @@ } }, "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==" }, "once": { "version": "1.4.0", @@ -23239,9 +23192,9 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -23494,9 +23447,9 @@ }, "dependencies": { "ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz", + "integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==", "requires": { "async-limiter": "~1.0.0" } @@ -24123,9 +24076,9 @@ } }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", "requires": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -24247,9 +24200,9 @@ "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" }, "shebang-command": { "version": "1.2.0", @@ -24307,14 +24260,14 @@ } }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" }, "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "requires": { "debug": "2.6.9", "depd": "2.0.0", @@ -24377,14 +24330,21 @@ "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==" }, "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "requires": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" + }, + "dependencies": { + "encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" + } } }, "set-blocking": { @@ -25103,11 +25063,6 @@ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -25151,9 +25106,9 @@ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" }, "tough-cookie": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", - "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", "dev": true, "requires": { "psl": "^1.1.33", @@ -25608,9 +25563,9 @@ } }, "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true }, "wrap-ansi": { @@ -25693,9 +25648,9 @@ } }, "ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.10", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", + "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "requires": {} }, "xcode": { diff --git a/sample-apps/rnhms-expo-demo/README.md b/sample-apps/rnhms-expo-demo/README.md index d71d9a82c..23d491312 100644 --- a/sample-apps/rnhms-expo-demo/README.md +++ b/sample-apps/rnhms-expo-demo/README.md @@ -4,17 +4,40 @@ This Expo app uses `@100mslive/react-native-room-kit` package for adding video c To add video calling feature into your own Expo app, You can refer [Expo & Prebuilt Quickstart guide](https://www.100ms.live/docs/react-native/v2/quickstart/expo-prebuilt) -You can also build this app locally on your machine - +## Requirements + +### Minimum Configuration + +- React Native 0.73.0 or above +- Java 17 or above +- Android API level 24 or above +- Xcode 14 or above +- iOS 16 or above +- Node.js 22 or above +- Expo SDK 50 or above + +### Recommended Configuration + +- React Native 0.77.3 or above +- Java 17 or above +- Android API level 35 or above +- Xcode 15 or above +- iOS 16 or above +- Node.js 22 or above + +## Build Locally + +You can also build this app locally on your machine: 1. Fork and clone the repo 2. Change your current working directory to `..../sample-apps/rnhms-expo-demo` dir. 3. Install `node_modules` by running `npx expo install`. -4. You Need to have `Node.js >= 18`, You can check your node version by running `node -v`. You can use [nvm](https://github.com/nvm-sh/nvm) or upgarde your node version. +4. You need to have `Node.js >= 22`. You can check your node version by running `node -v`. You can use [nvm](https://github.com/nvm-sh/nvm) or upgrade your node version. 5. Recreate `android` and `ios` folders by running `npx expo prebuild`. 6. Now you should be able to run apps by running `npm run android` or `npm run ios`. ## Android Setup -Android app is targeting `Android SDK 34`. Therefore, You will need `JDK 17` to build the Android app. +Android app is targeting `Android SDK 34`. Therefore, You will need **Java 17** to build the Android app. You can check your JDK version by running `java --version` in terminal. diff --git a/scripts/README.md b/scripts/README.md new file mode 100644 index 000000000..efd4bd024 --- /dev/null +++ b/scripts/README.md @@ -0,0 +1,162 @@ +# Scripts + +This directory contains utility scripts for automating various tasks in the 100ms React Native monorepo. + +## Version Management Scripts + +### generate-version-info.js + +Automatically extracts version information from various package and configuration files. + +**Usage:** + +```bash +node scripts/generate-version-info.js +``` + +**What it extracts:** + +- Room Kit version from `packages/react-native-room-kit/package.json` +- React Native SDK version from `packages/react-native-hms/package.json` +- Example app version from Android `build.gradle` and iOS `Info.plist` +- React Native version from example app's `package.json` +- Native SDK versions from `packages/react-native-hms/sdk-versions.json` + +**Output example:** + +``` +--- + +Current Version Info: +Room Kit: 1.3.0 +Example App Version: 2.5.3 (546) +React Native: 0.77.3 +React Native SDK: 1.12.0 +Android SDK: 2.9.78 +iOS SDK: 1.17.0 +``` + +**Note:** The build number shown is unified for both Android and iOS platforms (they should always be kept in sync). + +### update-changelog-versions.js + +Automatically updates the "Current Version Info" section in the ExampleAppChangelog.txt file. + +**Usage:** + +```bash +node scripts/update-changelog-versions.js +``` + +**When to use:** + +- After bumping any package version +- After updating native SDK versions in `sdk-versions.json` +- After updating React Native version +- Before creating a release +- As part of your CI/CD pipeline + +**What it does:** + +1. Reads all version information from source files +2. Finds the "Current Version Info" section in the changelog +3. Replaces it with the latest versions +4. Preserves all the manual changelog content above it + +## Adding to Your Workflow + +### Manual Usage + +Run the update script whenever you make version changes: + +```bash +# After bumping versions +node scripts/update-changelog-versions.js + +# Verify the changes +git diff packages/react-native-room-kit/example/ExampleAppChangelog.txt + +# Commit the updated changelog +git add packages/react-native-room-kit/example/ExampleAppChangelog.txt +git commit -m "chore: update changelog version info" +``` + +### As a Git Hook + +Add to `.husky/pre-commit` or your commit hooks: + +```bash +# Update version info before commit +node scripts/update-changelog-versions.js +git add packages/react-native-room-kit/example/ExampleAppChangelog.txt +``` + +### In CI/CD + +Add to your GitHub Actions workflow: + +```yaml +- name: Update Changelog Versions + run: node scripts/update-changelog-versions.js + +- name: Commit Changes + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git add packages/react-native-room-kit/example/ExampleAppChangelog.txt + git commit -m "chore: update changelog version info [skip ci]" || true + git push +``` + +### In package.json Scripts + +You can add npm scripts to the individual packages: + +```json +{ + "scripts": { + "update-versions": "node ../../scripts/update-changelog-versions.js" + } +} +``` + +## Benefits + +1. **No Manual Updates**: Version info is automatically extracted from source files +2. **Always Accurate**: Impossible to have version mismatches +3. **Time Saving**: No need to manually check and update 6+ different version numbers +4. **Automation Ready**: Easy to integrate into CI/CD pipelines +5. **Single Source of Truth**: All versions come from their authoritative sources + +## File Sources + +The scripts read from these files: + +| Version Info | Source File | +| --------------------- | ----------------------------------------------------------------- | +| Room Kit | `packages/react-native-room-kit/package.json` | +| React Native SDK | `packages/react-native-hms/package.json` | +| Android SDK | `packages/react-native-hms/sdk-versions.json` | +| iOS SDK | `packages/react-native-hms/sdk-versions.json` | +| React Native | `packages/react-native-room-kit/example/package.json` | +| Example App (Android) | `packages/react-native-room-kit/example/android/app/build.gradle` | +| Example App (iOS) | `packages/react-native-room-kit/example/ios/RNExample/Info.plist` | + +## Troubleshooting + +**Script can't find files:** + +- Make sure you run the script from the repository root +- Check that all source files exist in their expected locations + +**Version shows as "N/A":** + +- Check that the source file exists +- Verify the file format hasn't changed +- Check file permissions + +**Changelog not updating:** + +- Ensure the changelog has a "---" separator before "Current Version Info:" +- Check file write permissions +- Verify the changelog path is correct diff --git a/scripts/generate-version-info.js b/scripts/generate-version-info.js new file mode 100644 index 000000000..1a1d7c689 --- /dev/null +++ b/scripts/generate-version-info.js @@ -0,0 +1,122 @@ +#!/usr/bin/env node + +const fs = require("fs"); +const path = require("path"); + +/** + * Script to automatically generate version information from package files + * This replaces manual updates to the "Current Version Info" section + */ + +function readJsonFile(filePath) { + try { + const content = fs.readFileSync(filePath, "utf8"); + return JSON.parse(content); + } catch (error) { + console.error(`Error reading ${filePath}:`, error.message); + return null; + } +} + +function readPlistValue(filePath, key) { + try { + const content = fs.readFileSync(filePath, "utf8"); + // Simple regex to extract value after the key + const regex = new RegExp(`${key}\\s*([^<]+)`); + const match = content.match(regex); + return match ? match[1] : null; + } catch (error) { + console.error(`Error reading plist ${filePath}:`, error.message); + return null; + } +} + +function readGradleVersion(filePath, versionType) { + try { + const content = fs.readFileSync(filePath, "utf8"); + const regex = new RegExp(`${versionType}\\s+(\\d+)`); + const match = content.match(regex); + return match ? match[1] : null; + } catch (error) { + console.error(`Error reading gradle ${filePath}:`, error.message); + return null; + } +} + +function generateVersionInfo() { + const rootDir = path.join(__dirname, ".."); + + // Read package versions + const roomKitPkg = readJsonFile( + path.join(rootDir, "packages/react-native-room-kit/package.json"), + ); + const hmsPkg = readJsonFile( + path.join(rootDir, "packages/react-native-hms/package.json"), + ); + const examplePkg = readJsonFile( + path.join(rootDir, "packages/react-native-room-kit/example/package.json"), + ); + const sdkVersions = readJsonFile( + path.join(rootDir, "packages/react-native-hms/sdk-versions.json"), + ); + + // Read Android app version + const androidVersionName = readGradleVersion( + path.join( + rootDir, + "packages/react-native-room-kit/example/android/app/build.gradle", + ), + "versionName", + ); + const androidVersionCode = readGradleVersion( + path.join( + rootDir, + "packages/react-native-room-kit/example/android/app/build.gradle", + ), + "versionCode", + ); + + // Read iOS app version + const iosVersion = readPlistValue( + path.join( + rootDir, + "packages/react-native-room-kit/example/ios/RNExample/Info.plist", + ), + "CFBundleShortVersionString", + ); + const iosBuild = readPlistValue( + path.join( + rootDir, + "packages/react-native-room-kit/example/ios/RNExample/Info.plist", + ), + "CFBundleVersion", + ); + + // Determine build number (prefer Android, fallback to iOS) + const buildNumber = androidVersionCode || iosBuild || "N/A"; + + // Generate version info text + const versionInfo = ` +--- + +Current Version Info: +Room Kit: ${roomKitPkg?.version || "N/A"} +Example App Version: ${androidVersionName || iosVersion || "N/A"} (${buildNumber}) +React Native: ${examplePkg?.dependencies?.["react-native"] || "N/A"} +React Native SDK: ${hmsPkg?.version || "N/A"} +Android SDK: ${sdkVersions?.android || "N/A"} +iOS SDK: ${sdkVersions?.ios || "N/A"} +`; + + return versionInfo.trim(); +} + +// Export for use in other scripts +if (require.main === module) { + // Running as a script + const versionInfo = generateVersionInfo(); + console.log(versionInfo); +} else { + // Being imported as a module + module.exports = { generateVersionInfo }; +} diff --git a/scripts/update-changelog-versions.js b/scripts/update-changelog-versions.js new file mode 100644 index 000000000..750268bd8 --- /dev/null +++ b/scripts/update-changelog-versions.js @@ -0,0 +1,56 @@ +#!/usr/bin/env node + +const fs = require("fs"); +const path = require("path"); +const { generateVersionInfo } = require("./generate-version-info"); + +/** + * Script to automatically update the "Current Version Info" section + * in the ExampleAppChangelog.txt file + */ + +function updateChangelogVersions() { + const changelogPath = path.join( + __dirname, + "../packages/react-native-room-kit/example/ExampleAppChangelog.txt", + ); + + try { + // Read the existing changelog + const content = fs.readFileSync(changelogPath, "utf8"); + + // Generate new version info + const newVersionInfo = generateVersionInfo(); + + // Find and replace the "Current Version Info" section + // Match from "---" followed by newlines and "Current Version Info:" to the end of file + const regex = /---\s*\n\s*Current Version Info:[\s\S]*$/; + + let updatedContent; + if (regex.test(content)) { + // Replace existing version info + updatedContent = content.replace(regex, newVersionInfo); + console.log("✅ Updated existing version info section"); + } else { + // Append to end of file if section doesn't exist + updatedContent = content.trimEnd() + "\n\n" + newVersionInfo + "\n"; + console.log("✅ Added new version info section"); + } + + // Write back to file + fs.writeFileSync(changelogPath, updatedContent, "utf8"); + console.log(`✅ Changelog updated: ${changelogPath}`); + + // Show what was written + console.log("\n" + newVersionInfo); + } catch (error) { + console.error("❌ Error updating changelog:", error.message); + process.exit(1); + } +} + +if (require.main === module) { + updateChangelogVersions(); +} + +module.exports = { updateChangelogVersions };