From 449b51a2481cd4c074566a9304fefb3ab0e1b74d Mon Sep 17 00:00:00 2001 From: maciejmakowski2003 Date: Sun, 28 Dec 2025 13:13:58 +0100 Subject: [PATCH 1/7] fix: trying to fix framewrok static linking issues on iOS --- .../react-native-audio-api/RNAudioAPI.podspec | 14 +++++- .../scripts/rnaa_utils.rb | 45 +++++++++++++++++++ 2 files changed, 58 insertions(+), 1 deletion(-) diff --git a/packages/react-native-audio-api/RNAudioAPI.podspec b/packages/react-native-audio-api/RNAudioAPI.podspec index 5cfe758ce..d92a3a873 100644 --- a/packages/react-native-audio-api/RNAudioAPI.podspec +++ b/packages/react-native-audio-api/RNAudioAPI.podspec @@ -3,6 +3,7 @@ require_relative './scripts/rnaa_utils' package_json = JSON.parse(File.read(File.join(__dir__, "package.json"))) +$config = find_config() $new_arch_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1' $RN_AUDIO_API_FFMPEG_DISABLED = ENV['DISABLE_AUDIOAPI_FFMPEG'].nil? ? false : ENV['DISABLE_AUDIOAPI_FFMPEG'] == '1' # false by default @@ -10,7 +11,8 @@ folly_flags = "-DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64- fabric_flags = $new_arch_enabled ? '-DRCT_NEW_ARCH_ENABLED' : '' version_flag = "-DAUDIOAPI_VERSION=#{package_json['version']}" -worklets_preprocessor_flag = check_if_worklets_enabled() ? '-DRN_AUDIO_API_ENABLE_WORKLETS=1' : '' +worklets_enabled = check_if_worklets_enabled() +worklets_preprocessor_flag = worklets_enabled ? '-DRN_AUDIO_API_ENABLE_WORKLETS=1' : '' ffmpeg_flag = $RN_AUDIO_API_FFMPEG_DISABLED ? '-DRN_AUDIO_API_FFMPEG_DISABLED=1' : '' Pod::Spec.new do |s| @@ -24,6 +26,10 @@ Pod::Spec.new do |s| s.platforms = { :ios => min_ios_version_supported } s.source = { :git => "https://github.com/software-mansion/react-native-audio-api.git", :tag => "#{s.version}" } + if worklets_enabled + s.dependency 'RNWorklets' + end + s.subspec "audioapi" do |ss| ss.source_files = "common/cpp/audioapi/**/*.{cpp,c,h,hpp}" ss.exclude_files = $RN_AUDIO_API_FFMPEG_DISABLED ? ["common/cpp/audioapi/libs/ffmpeg/**"] : [] @@ -99,6 +105,12 @@ s.user_target_xcconfig = { $(inherited) $(PODS_ROOT)/Headers/Public/RNAudioAPI $(PODS_TARGET_SRCROOT)/common/cpp + $(PODS_ROOT)/Headers/Public/RNWorklets + $(PODS_ROOT)/#{$config[:react_native_common_dir]} + $(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/ios + $(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/common/cpp + $(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/ios + $(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/common/cpp ].join(' ') } # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0. diff --git a/packages/react-native-audio-api/scripts/rnaa_utils.rb b/packages/react-native-audio-api/scripts/rnaa_utils.rb index c909460b6..7eed99c55 100644 --- a/packages/react-native-audio-api/scripts/rnaa_utils.rb +++ b/packages/react-native-audio-api/scripts/rnaa_utils.rb @@ -6,3 +6,48 @@ def check_if_worklets_enabled() end true end + +def try_to_parse_react_native_package_json(node_modules_dir) + react_native_package_json_path = File.join(node_modules_dir, 'react-native/package.json') + if !File.exist?(react_native_package_json_path) + return nil + end + return JSON.parse(File.read(react_native_package_json_path)) +end + +def find_config() + result = { + :react_native_common_dir => nil, + :dynamic_frameworks_audio_api_dir => nil, + :dynamic_frameworks_worklets_dir => nil, + } + + react_native_node_modules_dir = File.join(File.dirname(`cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native/package.json')"`), '..') + react_native_json = try_to_parse_react_native_package_json(react_native_node_modules_dir) + + if react_native_json == nil + # user configuration, just in case + node_modules_dir = ENV["REACT_NATIVE_NODE_MODULES_DIR"] + react_native_json = try_to_parse_react_native_package_json(node_modules_dir) + end + + if react_native_json == nil + raise '[AudioAPI] Unable to recognize your `react-native` version. Please set environmental variable with `react-native` location: `export REACT_NATIVE_NODE_MODULES_DIR="" && pod install`.' + end + + pods_root = Pod::Config.instance.project_pods_root + react_native_common_dir_absolute = File.join(react_native_node_modules_dir, 'react-native', 'ReactCommon') + react_native_common_dir_relative = Pathname.new(react_native_common_dir_absolute).relative_path_from(pods_root).to_s + result[:react_native_common_dir] = react_native_common_dir_relative + + react_native_audio_api_dir_absolute = File.join(__dir__, '..') + react_native_audio_api_dir_relative = Pathname.new(react_native_audio_api_dir_absolute).relative_path_from(pods_root).to_s + result[:dynamic_frameworks_audio_api_dir] = react_native_audio_api_dir_relative + + react_native_worklets_node_modules_dir = File.join(File.dirname(`cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native-worklets/package.json')"`), '..') + react_native_worklets_dir_absolute = File.join(react_native_worklets_node_modules_dir, 'react-native-worklets') + react_native_worklets_dir_relative = Pathname.new(react_native_worklets_dir_absolute).relative_path_from(pods_root).to_s + result[:dynamic_frameworks_worklets_dir] = react_native_worklets_dir_relative + + return result +end From 8b61bf615455ace6915f843bf9ca39e71974118c Mon Sep 17 00:00:00 2001 From: maciejmakowski2003 Date: Mon, 29 Dec 2025 12:44:31 +0100 Subject: [PATCH 2/7] fix: in progres --- .../react-native-audio-api/RNAudioAPI.podspec | 89 +++++++++---------- 1 file changed, 43 insertions(+), 46 deletions(-) diff --git a/packages/react-native-audio-api/RNAudioAPI.podspec b/packages/react-native-audio-api/RNAudioAPI.podspec index d92a3a873..819631d33 100644 --- a/packages/react-native-audio-api/RNAudioAPI.podspec +++ b/packages/react-native-audio-api/RNAudioAPI.podspec @@ -2,14 +2,14 @@ require "json" require_relative './scripts/rnaa_utils' package_json = JSON.parse(File.read(File.join(__dir__, "package.json"))) - $config = find_config() + $new_arch_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1' $RN_AUDIO_API_FFMPEG_DISABLED = ENV['DISABLE_AUDIOAPI_FFMPEG'].nil? ? false : ENV['DISABLE_AUDIOAPI_FFMPEG'] == '1' # false by default -folly_flags = "-DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32" fabric_flags = $new_arch_enabled ? '-DRCT_NEW_ARCH_ENABLED' : '' version_flag = "-DAUDIOAPI_VERSION=#{package_json['version']}" +ios_min_version = '13.4' worklets_enabled = check_if_worklets_enabled() worklets_preprocessor_flag = worklets_enabled ? '-DRN_AUDIO_API_ENABLE_WORKLETS=1' : '' @@ -22,7 +22,6 @@ Pod::Spec.new do |s| s.homepage = package_json["homepage"] s.license = package_json["license"] s.authors = package_json["author"] - s.platforms = { :ios => min_ios_version_supported } s.source = { :git => "https://github.com/software-mansion/react-native-audio-api.git", :tag => "#{s.version}" } @@ -52,8 +51,6 @@ Pod::Spec.new do |s| s.ios.frameworks = 'CoreFoundation', 'CoreAudio', 'AudioToolbox', 'Accelerate', 'MediaPlayer', 'AVFoundation' - s.compiler_flags = "#{folly_flags}" - s.prepare_command = <<-CMD chmod +x scripts/download-prebuilt-binaries.sh scripts/download-prebuilt-binaries.sh ios @@ -72,47 +69,47 @@ Pod::Spec.new do |s| 'common/cpp/audioapi/external/ffmpeg_ios/libavutil.xcframework', 'common/cpp/audioapi/external/ffmpeg_ios/libswresample.xcframework' ] -s.pod_target_xcconfig = { - "USE_HEADERMAP" => "YES", - "CLANG_CXX_LANGUAGE_STANDARD" => "c++20", - "GCC_PREPROCESSOR_DEFINITIONS" => '$(inherited) HAVE_ACCELERATE=1', - "HEADER_SEARCH_PATHS" => %W[ - $(PODS_TARGET_SRCROOT)/common/cpp - $(PODS_TARGET_SRCROOT)/ios - $(PODS_ROOT)/Headers/Public/RNWorklets - $(PODS_ROOT)/Headers/Private/React-Core - $(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include - $(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/opus - $(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/vorbis - ].concat($RN_AUDIO_API_FFMPEG_DISABLED ? [] : ["$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/ffmpeg_include"]).join(" "), - 'OTHER_CFLAGS' => "$(inherited) #{folly_flags} #{fabric_flags} #{version_flag} #{worklets_preprocessor_flag} #{ffmpeg_flag}", - 'OTHER_CPLUSPLUSFLAGS' => "$(inherited) #{folly_flags} #{fabric_flags} #{version_flag} #{worklets_preprocessor_flag} #{ffmpeg_flag}", -} - -s.user_target_xcconfig = { - 'OTHER_LDFLAGS' => %W[ - $(inherited) - -force_load #{lib_dir}/libopusfile.a - -force_load #{lib_dir}/libopus.a - -force_load #{lib_dir}/libogg.a - -force_load #{lib_dir}/libvorbis.a - -force_load #{lib_dir}/libvorbisenc.a - -force_load #{lib_dir}/libvorbisfile.a - -force_load #{lib_dir}/libssl.a - -force_load #{lib_dir}/libcrypto.a - ].join(" "), - 'HEADER_SEARCH_PATHS' => %W[ - $(inherited) - $(PODS_ROOT)/Headers/Public/RNAudioAPI - $(PODS_TARGET_SRCROOT)/common/cpp - $(PODS_ROOT)/Headers/Public/RNWorklets - $(PODS_ROOT)/#{$config[:react_native_common_dir]} - $(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/ios - $(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/common/cpp - $(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/ios - $(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/common/cpp - ].join(' ') -} + + s.pod_target_xcconfig = { + "USE_HEADERMAP" => "YES", + "HEADER_SEARCH_PATHS" => [ + '"$(PODS_TARGET_SRCROOT)/ReactCommon"', + '"$(PODS_TARGET_SRCROOT)/common/cpp"', + '"$(PODS_TARGET_SRCROOT)/ios"', + '"$(PODS_ROOT)/Headers/Private/React-Core"', + '"$(PODS_ROOT)/Headers/Public/RNWorklets"', + "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include\"", + "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/opus\"", + "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/vorbis\"", + ].concat($RN_AUDIO_API_FFMPEG_DISABLED ? [] : ["\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/ffmpeg_include\""]).join(' '), + "CLANG_CXX_LANGUAGE_STANDARD" => "c++20", + "GCC_PREPROCESSOR_DEFINITIONS" => '$(inherited) HAVE_ACCELERATE=1', + 'OTHER_CFLAGS' => "$(inherited) #{fabric_flags} #{version_flag} #{worklets_preprocessor_flag} #{ffmpeg_flag}", + 'OTHER_CPLUSPLUSFLAGS' => "$(inherited) #{fabric_flags} #{version_flag} #{worklets_preprocessor_flag} #{ffmpeg_flag}", + } + + s.user_target_xcconfig = { + "HEADER_SEARCH_PATHS" => [ + '"$(PODS_ROOT)/Headers/Public/RNWorklets"', + "\"$(PODS_ROOT)/#{$config[:react_native_common_dir]}\"", + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/ios\"", + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/common/cpp\"", + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/apple\"", + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/Common/cpp\"", + ].join(' '), + 'OTHER_LDFLAGS' => %W[ + $(inherited) + -force_load #{lib_dir}/libopusfile.a + -force_load #{lib_dir}/libopus.a + -force_load #{lib_dir}/libogg.a + -force_load #{lib_dir}/libvorbis.a + -force_load #{lib_dir}/libvorbisenc.a + -force_load #{lib_dir}/libvorbisfile.a + -force_load #{lib_dir}/libssl.a + -force_load #{lib_dir}/libcrypto.a + ].join(" "), + } + # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0. # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79. install_modules_dependencies(s) From d1a37a95f4488d1ef96e2eba012c37d28a23ff15 Mon Sep 17 00:00:00 2001 From: maciejmakowski2003 Date: Mon, 29 Dec 2025 19:50:44 +0100 Subject: [PATCH 3/7] fix: done --- .../FabricExample.xcodeproj/project.pbxproj | 84 ++++++++++++------- apps/fabric-example/ios/Podfile.lock | 6 +- .../react-native-audio-api/RNAudioAPI.podspec | 8 +- .../scripts/rnaa_utils.rb | 14 +++- 4 files changed, 74 insertions(+), 38 deletions(-) diff --git a/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj b/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj index f4da7aa34..11e567e36 100644 --- a/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj +++ b/apps/fabric-example/ios/FabricExample.xcodeproj/project.pbxproj @@ -7,7 +7,7 @@ objects = { /* Begin PBXBuildFile section */ - 0C80B921A6F3F58F76C31292 /* libPods-FabricExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */; }; + 074F12222894472419223AD0 /* libPods-FabricExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1242ABEEEDE16C844BC490A9 /* libPods-FabricExample.a */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; }; 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; @@ -15,15 +15,15 @@ /* End PBXBuildFile section */ /* Begin PBXFileReference section */ + 1242ABEEEDE16C844BC490A9 /* libPods-FabricExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FabricExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 13B07F961A680F5B00A75B9A /* FabricExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FabricExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FabricExample/Images.xcassets; sourceTree = ""; }; 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FabricExample/Info.plist; sourceTree = ""; }; 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = FabricExample/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.debug.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.debug.xcconfig"; sourceTree = ""; }; - 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.release.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.release.xcconfig"; sourceTree = ""; }; - 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-FabricExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3F8730B47DA01BE6267C3980 /* Pods-FabricExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.release.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.release.xcconfig"; sourceTree = ""; }; 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = FabricExample/AppDelegate.swift; sourceTree = ""; }; 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = FabricExample/LaunchScreen.storyboard; sourceTree = ""; }; + BC5E8CFC282892630066DDA2 /* Pods-FabricExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FabricExample.debug.xcconfig"; path = "Target Support Files/Pods-FabricExample/Pods-FabricExample.debug.xcconfig"; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; /* End PBXFileReference section */ @@ -32,7 +32,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0C80B921A6F3F58F76C31292 /* libPods-FabricExample.a in Frameworks */, + 074F12222894472419223AD0 /* libPods-FabricExample.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -55,7 +55,7 @@ isa = PBXGroup; children = ( ED297162215061F000B7C4FE /* JavaScriptCore.framework */, - 5DCACB8F33CDC322A6C60F78 /* libPods-FabricExample.a */, + 1242ABEEEDE16C844BC490A9 /* libPods-FabricExample.a */, ); name = Frameworks; sourceTree = ""; @@ -92,8 +92,8 @@ BBD78D7AC51CEA395F1C20DB /* Pods */ = { isa = PBXGroup; children = ( - 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */, - 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */, + BC5E8CFC282892630066DDA2 /* Pods-FabricExample.debug.xcconfig */, + 3F8730B47DA01BE6267C3980 /* Pods-FabricExample.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -105,13 +105,13 @@ isa = PBXNativeTarget; buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FabricExample" */; buildPhases = ( - C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */, + 913629BAA15CF058F9B3200C /* [CP] Check Pods Manifest.lock */, 13B07F871A680F5B00A75B9A /* Sources */, 13B07F8C1A680F5B00A75B9A /* Frameworks */, 13B07F8E1A680F5B00A75B9A /* Resources */, 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, - 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, - E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, + 1EB008383D61027425A38005 /* [CP] Embed Pods Frameworks */, + 640DA81675C7F86B3A7B040E /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -183,7 +183,7 @@ shellPath = /bin/sh; shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n"; }; - 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = { + 1EB008383D61027425A38005 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -200,43 +200,43 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; - C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { + 640DA81675C7F86B3A7B040E /* [CP] Copy Pods Resources */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; + name = "[CP] Copy Pods Resources"; outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-FabricExample-checkManifestLockResult.txt", + "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-output-files.xcfilelist", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources.sh\"\n"; showEnvVarsInLog = 0; }; - E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { + 913629BAA15CF058F9B3200C /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-input-files.xcfilelist", ); - name = "[CP] Copy Pods Resources"; + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources-${CONFIGURATION}-output-files.xcfilelist", + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-FabricExample-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FabricExample/Pods-FabricExample-resources.sh\"\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -255,7 +255,7 @@ /* Begin XCBuildConfiguration section */ 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-FabricExample.debug.xcconfig */; + baseConfigurationReference = BC5E8CFC282892630066DDA2 /* Pods-FabricExample.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; @@ -284,7 +284,7 @@ }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-FabricExample.release.xcconfig */; + baseConfigurationReference = 3F8730B47DA01BE6267C3980 /* Pods-FabricExample.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; @@ -358,6 +358,19 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core", + "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers/platform/ios", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios", + "${PODS_CONFIGURATION_BUILD_DIR}/React-Fabric/React_Fabric.framework/Headers/react/renderer/components/view/platform/cxx", + "${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios", + ); IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, @@ -431,6 +444,19 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ( + "$(inherited)", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core", + "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/React-runtimeexecutor/React_runtimeexecutor.framework/Headers/platform/ios", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios", + "${PODS_CONFIGURATION_BUILD_DIR}/React-Fabric/React_Fabric.framework/Headers/react/renderer/components/view/platform/cxx", + "${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers", + "${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios", + ); IPHONEOS_DEPLOYMENT_TARGET = 15.1; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, diff --git a/apps/fabric-example/ios/Podfile.lock b/apps/fabric-example/ios/Podfile.lock index bbba5c8eb..1ad8625b6 100644 --- a/apps/fabric-example/ios/Podfile.lock +++ b/apps/fabric-example/ios/Podfile.lock @@ -2467,6 +2467,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - RNAudioAPI/audioapi (= 0.11.0) + - RNWorklets - SocketRocket - Yoga - RNAudioAPI/audioapi (0.11.0): @@ -2497,6 +2498,7 @@ PODS: - ReactCommon/turbomodule/core - RNAudioAPI/audioapi/audioapi_dsp (= 0.11.0) - RNAudioAPI/audioapi/ios (= 0.11.0) + - RNWorklets - SocketRocket - Yoga - RNAudioAPI/audioapi/audioapi_dsp (0.11.0): @@ -2525,6 +2527,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - RNWorklets - SocketRocket - Yoga - RNAudioAPI/audioapi/ios (0.11.0): @@ -2553,6 +2556,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - RNWorklets - SocketRocket - Yoga - RNGestureHandler (2.28.0): @@ -3216,7 +3220,7 @@ SPEC CHECKSUMS: ReactAppDependencyProvider: c5c4f5280e4ae0f9f4a739c64c4260fe0b3edaf1 ReactCodegen: 096bbbb2498ca55f385e2fbd465bfa0211ee8295 ReactCommon: 25c7f94aee74ddd93a8287756a8ac0830a309544 - RNAudioAPI: c7dc7b491a0e4b23535a55fd9b4a00d0f803f4bb + RNAudioAPI: ffb84555071242298857704771c3bf5cd634acf0 RNGestureHandler: f1dd7f92a0faa2868a919ab53bb9d66eb4ebfcf5 RNReanimated: e4993dd98196c698cbacc1441a4ac5b855ae56dc RNScreens: d821082c6dd1cb397cc0c98b026eeafaa68be479 diff --git a/packages/react-native-audio-api/RNAudioAPI.podspec b/packages/react-native-audio-api/RNAudioAPI.podspec index 819631d33..c8016fbb5 100644 --- a/packages/react-native-audio-api/RNAudioAPI.podspec +++ b/packages/react-native-audio-api/RNAudioAPI.podspec @@ -72,12 +72,16 @@ Pod::Spec.new do |s| s.pod_target_xcconfig = { "USE_HEADERMAP" => "YES", + "DEFINES_MODULE" => "YES", "HEADER_SEARCH_PATHS" => [ '"$(PODS_TARGET_SRCROOT)/ReactCommon"', '"$(PODS_TARGET_SRCROOT)/common/cpp"', '"$(PODS_TARGET_SRCROOT)/ios"', '"$(PODS_ROOT)/Headers/Private/React-Core"', '"$(PODS_ROOT)/Headers/Public/RNWorklets"', + "\"$(PODS_ROOT)/#{$config[:react_native_common_dir]}\"", + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/apple\"", + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/Common/cpp\"", "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include\"", "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/opus\"", "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/vorbis\"", @@ -90,12 +94,8 @@ Pod::Spec.new do |s| s.user_target_xcconfig = { "HEADER_SEARCH_PATHS" => [ - '"$(PODS_ROOT)/Headers/Public/RNWorklets"', - "\"$(PODS_ROOT)/#{$config[:react_native_common_dir]}\"", "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/ios\"", "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_audio_api_dir]}/common/cpp\"", - "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/apple\"", - "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/Common/cpp\"", ].join(' '), 'OTHER_LDFLAGS' => %W[ $(inherited) diff --git a/packages/react-native-audio-api/scripts/rnaa_utils.rb b/packages/react-native-audio-api/scripts/rnaa_utils.rb index 7eed99c55..a135dfaef 100644 --- a/packages/react-native-audio-api/scripts/rnaa_utils.rb +++ b/packages/react-native-audio-api/scripts/rnaa_utils.rb @@ -44,10 +44,16 @@ def find_config() react_native_audio_api_dir_relative = Pathname.new(react_native_audio_api_dir_absolute).relative_path_from(pods_root).to_s result[:dynamic_frameworks_audio_api_dir] = react_native_audio_api_dir_relative - react_native_worklets_node_modules_dir = File.join(File.dirname(`cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native-worklets/package.json')"`), '..') - react_native_worklets_dir_absolute = File.join(react_native_worklets_node_modules_dir, 'react-native-worklets') - react_native_worklets_dir_relative = Pathname.new(react_native_worklets_dir_absolute).relative_path_from(pods_root).to_s - result[:dynamic_frameworks_worklets_dir] = react_native_worklets_dir_relative + worklets_path_output = `cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native-worklets/package.json')" 2> /dev/null`.strip + + if !worklets_path_output.empty? && $?.success? + react_native_worklets_node_modules_dir = File.join(File.dirname(worklets_path_output), '..') + react_native_worklets_dir_absolute = File.join(react_native_worklets_node_modules_dir, 'react-native-worklets') + react_native_worklets_dir_relative = Pathname.new(react_native_worklets_dir_absolute).relative_path_from(pods_root).to_s + result[:dynamic_frameworks_worklets_dir] = react_native_worklets_dir_relative + else + result[:dynamic_frameworks_worklets_dir] = "" + end return result end From 6735c8c1a33e1951d21fa77931ea78e4d0e17e3a Mon Sep 17 00:00:00 2001 From: maciejmakowski2003 Date: Tue, 30 Dec 2025 07:49:38 +0100 Subject: [PATCH 4/7] fix: static linking without worklets --- packages/react-native-audio-api/RNAudioAPI.podspec | 11 +++++++---- packages/react-native-audio-api/scripts/rnaa_utils.rb | 10 +++------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/packages/react-native-audio-api/RNAudioAPI.podspec b/packages/react-native-audio-api/RNAudioAPI.podspec index c8016fbb5..ff1460030 100644 --- a/packages/react-native-audio-api/RNAudioAPI.podspec +++ b/packages/react-native-audio-api/RNAudioAPI.podspec @@ -11,7 +11,7 @@ fabric_flags = $new_arch_enabled ? '-DRCT_NEW_ARCH_ENABLED' : '' version_flag = "-DAUDIOAPI_VERSION=#{package_json['version']}" ios_min_version = '13.4' -worklets_enabled = check_if_worklets_enabled() +worklets_enabled = $config[:worklets_enabled] worklets_preprocessor_flag = worklets_enabled ? '-DRN_AUDIO_API_ENABLE_WORKLETS=1' : '' ffmpeg_flag = $RN_AUDIO_API_FFMPEG_DISABLED ? '-DRN_AUDIO_API_FFMPEG_DISABLED=1' : '' @@ -80,12 +80,15 @@ Pod::Spec.new do |s| '"$(PODS_ROOT)/Headers/Private/React-Core"', '"$(PODS_ROOT)/Headers/Public/RNWorklets"', "\"$(PODS_ROOT)/#{$config[:react_native_common_dir]}\"", - "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/apple\"", - "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/Common/cpp\"", "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include\"", "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/opus\"", "\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/include/vorbis\"", - ].concat($RN_AUDIO_API_FFMPEG_DISABLED ? [] : ["\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/ffmpeg_include\""]).join(' '), + ].concat($RN_AUDIO_API_FFMPEG_DISABLED ? [] : ["\"$(PODS_TARGET_SRCROOT)/#{external_dir_relative}/ffmpeg_include\""]) + .concat(worklets_enabled ? [ + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/apple\"", + "\"$(PODS_ROOT)/#{$config[:dynamic_frameworks_worklets_dir]}/Common/cpp\"" + ] : []) + .join(' '), "CLANG_CXX_LANGUAGE_STANDARD" => "c++20", "GCC_PREPROCESSOR_DEFINITIONS" => '$(inherited) HAVE_ACCELERATE=1', 'OTHER_CFLAGS' => "$(inherited) #{fabric_flags} #{version_flag} #{worklets_preprocessor_flag} #{ffmpeg_flag}", diff --git a/packages/react-native-audio-api/scripts/rnaa_utils.rb b/packages/react-native-audio-api/scripts/rnaa_utils.rb index a135dfaef..22ebc13bd 100644 --- a/packages/react-native-audio-api/scripts/rnaa_utils.rb +++ b/packages/react-native-audio-api/scripts/rnaa_utils.rb @@ -20,6 +20,7 @@ def find_config() :react_native_common_dir => nil, :dynamic_frameworks_audio_api_dir => nil, :dynamic_frameworks_worklets_dir => nil, + :worklets_enabled => check_if_worklets_enabled() } react_native_node_modules_dir = File.join(File.dirname(`cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native/package.json')"`), '..') @@ -44,15 +45,10 @@ def find_config() react_native_audio_api_dir_relative = Pathname.new(react_native_audio_api_dir_absolute).relative_path_from(pods_root).to_s result[:dynamic_frameworks_audio_api_dir] = react_native_audio_api_dir_relative - worklets_path_output = `cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native-worklets/package.json')" 2> /dev/null`.strip - - if !worklets_path_output.empty? && $?.success? - react_native_worklets_node_modules_dir = File.join(File.dirname(worklets_path_output), '..') - react_native_worklets_dir_absolute = File.join(react_native_worklets_node_modules_dir, 'react-native-worklets') + if result[:worklets_enabled] == true + react_native_worklets_dir_absolute = File.join(__dir__, '..') react_native_worklets_dir_relative = Pathname.new(react_native_worklets_dir_absolute).relative_path_from(pods_root).to_s result[:dynamic_frameworks_worklets_dir] = react_native_worklets_dir_relative - else - result[:dynamic_frameworks_worklets_dir] = "" end return result From 2fe5ea84b80c1b4b35513b0ab87dd9d5f219f952 Mon Sep 17 00:00:00 2001 From: maciejmakowski2003 Date: Tue, 30 Dec 2025 07:50:26 +0100 Subject: [PATCH 5/7] ci: lint --- packages/react-native-audio-api/RNAudioAPI.podspec | 2 +- packages/react-native-audio-api/scripts/rnaa_utils.rb | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/react-native-audio-api/RNAudioAPI.podspec b/packages/react-native-audio-api/RNAudioAPI.podspec index ff1460030..addce7905 100644 --- a/packages/react-native-audio-api/RNAudioAPI.podspec +++ b/packages/react-native-audio-api/RNAudioAPI.podspec @@ -22,7 +22,7 @@ Pod::Spec.new do |s| s.homepage = package_json["homepage"] s.license = package_json["license"] s.authors = package_json["author"] - s.platforms = { :ios => min_ios_version_supported } + s.platforms = { :ios => ios_min_version } s.source = { :git => "https://github.com/software-mansion/react-native-audio-api.git", :tag => "#{s.version}" } if worklets_enabled diff --git a/packages/react-native-audio-api/scripts/rnaa_utils.rb b/packages/react-native-audio-api/scripts/rnaa_utils.rb index 22ebc13bd..fc1506891 100644 --- a/packages/react-native-audio-api/scripts/rnaa_utils.rb +++ b/packages/react-native-audio-api/scripts/rnaa_utils.rb @@ -46,7 +46,8 @@ def find_config() result[:dynamic_frameworks_audio_api_dir] = react_native_audio_api_dir_relative if result[:worklets_enabled] == true - react_native_worklets_dir_absolute = File.join(__dir__, '..') + react_native_worklets_node_modules_dir = File.join(File.dirname(`cd "#{Pod::Config.instance.installation_root.to_s}" && node --print "require.resolve('react-native-worklets/package.json')"`), '..') + react_native_worklets_dir_absolute = File.join(react_native_worklets_node_modules_dir, 'react-native-worklets') react_native_worklets_dir_relative = Pathname.new(react_native_worklets_dir_absolute).relative_path_from(pods_root).to_s result[:dynamic_frameworks_worklets_dir] = react_native_worklets_dir_relative end From 83850afd21b5ed43e5060db1bc2c56ebaab63b45 Mon Sep 17 00:00:00 2001 From: maciejmakowski2003 Date: Tue, 30 Dec 2025 07:53:10 +0100 Subject: [PATCH 6/7] fix: bumped up min ios version to 14.0 --- packages/react-native-audio-api/RNAudioAPI.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native-audio-api/RNAudioAPI.podspec b/packages/react-native-audio-api/RNAudioAPI.podspec index addce7905..dc82493ba 100644 --- a/packages/react-native-audio-api/RNAudioAPI.podspec +++ b/packages/react-native-audio-api/RNAudioAPI.podspec @@ -9,7 +9,7 @@ $RN_AUDIO_API_FFMPEG_DISABLED = ENV['DISABLE_AUDIOAPI_FFMPEG'].nil? ? false : EN fabric_flags = $new_arch_enabled ? '-DRCT_NEW_ARCH_ENABLED' : '' version_flag = "-DAUDIOAPI_VERSION=#{package_json['version']}" -ios_min_version = '13.4' +ios_min_version = '14.0' worklets_enabled = $config[:worklets_enabled] worklets_preprocessor_flag = worklets_enabled ? '-DRN_AUDIO_API_ENABLE_WORKLETS=1' : '' From f03c5f57fc9ce84444d8e4cfd0302daed36b4a67 Mon Sep 17 00:00:00 2001 From: maciejmakowski2003 Date: Thu, 8 Jan 2026 12:41:36 +0100 Subject: [PATCH 7/7] chore: update Podfile.lock --- apps/fabric-example/ios/Podfile.lock | 786 ++++++++++++++++----------- 1 file changed, 465 insertions(+), 321 deletions(-) diff --git a/apps/fabric-example/ios/Podfile.lock b/apps/fabric-example/ios/Podfile.lock index af38e9d0b..1112dd384 100644 --- a/apps/fabric-example/ios/Podfile.lock +++ b/apps/fabric-example/ios/Podfile.lock @@ -2,12 +2,12 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - fast_float (8.0.0) - - FBLazyVector (0.82.0) + - FBLazyVector (0.83.1) - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.82.0): - - hermes-engine/Pre-built (= 0.82.0) - - hermes-engine/Pre-built (0.82.0) + - hermes-engine (0.14.0): + - hermes-engine/Pre-built (= 0.14.0) + - hermes-engine/Pre-built (0.14.0) - RCT-Folly (2024.11.18.00): - boost - DoubleConversion @@ -27,27 +27,30 @@ PODS: - fast_float (= 8.0.0) - fmt (= 11.0.2) - glog - - RCTDeprecation (0.82.0) - - RCTRequired (0.82.0) - - RCTTypeSafety (0.82.0): - - FBLazyVector (= 0.82.0) - - RCTRequired (= 0.82.0) - - React-Core (= 0.82.0) - - React (0.82.0): - - React-Core (= 0.82.0) - - React-Core/DevSupport (= 0.82.0) - - React-Core/RCTWebSocket (= 0.82.0) - - React-RCTActionSheet (= 0.82.0) - - React-RCTAnimation (= 0.82.0) - - React-RCTBlob (= 0.82.0) - - React-RCTImage (= 0.82.0) - - React-RCTLinking (= 0.82.0) - - React-RCTNetwork (= 0.82.0) - - React-RCTSettings (= 0.82.0) - - React-RCTText (= 0.82.0) - - React-RCTVibration (= 0.82.0) - - React-callinvoker (0.82.0) - - React-Core (0.82.0): + - RCTDeprecation (0.83.1) + - RCTRequired (0.83.1) + - RCTSwiftUI (0.83.1) + - RCTSwiftUIWrapper (0.83.1): + - RCTSwiftUI + - RCTTypeSafety (0.83.1): + - FBLazyVector (= 0.83.1) + - RCTRequired (= 0.83.1) + - React-Core (= 0.83.1) + - React (0.83.1): + - React-Core (= 0.83.1) + - React-Core/DevSupport (= 0.83.1) + - React-Core/RCTWebSocket (= 0.83.1) + - React-RCTActionSheet (= 0.83.1) + - React-RCTAnimation (= 0.83.1) + - React-RCTBlob (= 0.83.1) + - React-RCTImage (= 0.83.1) + - React-RCTLinking (= 0.83.1) + - React-RCTNetwork (= 0.83.1) + - React-RCTSettings (= 0.83.1) + - React-RCTText (= 0.83.1) + - React-RCTVibration (= 0.83.1) + - React-callinvoker (0.83.1) + - React-Core (0.83.1): - boost - DoubleConversion - fast_float @@ -57,7 +60,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.82.0) + - React-Core/Default (= 0.83.1) - React-cxxreact - React-featureflags - React-hermes @@ -72,7 +75,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/CoreModulesHeaders (0.82.0): + - React-Core/CoreModulesHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -97,7 +100,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/Default (0.82.0): + - React-Core/Default (0.83.1): - boost - DoubleConversion - fast_float @@ -121,7 +124,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/DevSupport (0.82.0): + - React-Core/DevSupport (0.83.1): - boost - DoubleConversion - fast_float @@ -131,8 +134,8 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.82.0) - - React-Core/RCTWebSocket (= 0.82.0) + - React-Core/Default (= 0.83.1) + - React-Core/RCTWebSocket (= 0.83.1) - React-cxxreact - React-featureflags - React-hermes @@ -147,7 +150,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTActionSheetHeaders (0.82.0): + - React-Core/RCTActionSheetHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -172,7 +175,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTAnimationHeaders (0.82.0): + - React-Core/RCTAnimationHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -197,7 +200,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTBlobHeaders (0.82.0): + - React-Core/RCTBlobHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -222,7 +225,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTImageHeaders (0.82.0): + - React-Core/RCTImageHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -247,7 +250,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTLinkingHeaders (0.82.0): + - React-Core/RCTLinkingHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -272,7 +275,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTNetworkHeaders (0.82.0): + - React-Core/RCTNetworkHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -297,7 +300,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTSettingsHeaders (0.82.0): + - React-Core/RCTSettingsHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -322,7 +325,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTTextHeaders (0.82.0): + - React-Core/RCTTextHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -347,7 +350,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTVibrationHeaders (0.82.0): + - React-Core/RCTVibrationHeaders (0.83.1): - boost - DoubleConversion - fast_float @@ -372,7 +375,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-Core/RCTWebSocket (0.82.0): + - React-Core/RCTWebSocket (0.83.1): - boost - DoubleConversion - fast_float @@ -382,7 +385,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - RCTDeprecation - - React-Core/Default (= 0.82.0) + - React-Core/Default (= 0.83.1) - React-cxxreact - React-featureflags - React-hermes @@ -397,7 +400,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-CoreModules (0.82.0): + - React-CoreModules (0.83.1): - boost - DoubleConversion - fast_float @@ -405,21 +408,22 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - RCTTypeSafety (= 0.82.0) - - React-Core/CoreModulesHeaders (= 0.82.0) + - RCTTypeSafety (= 0.83.1) + - React-Core/CoreModulesHeaders (= 0.83.1) - React-debug - - React-jsi (= 0.82.0) + - React-jsi (= 0.83.1) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-NativeModulesApple - React-RCTBlob - React-RCTFBReactNativeSpec - - React-RCTImage (= 0.82.0) + - React-RCTImage (= 0.83.1) - React-runtimeexecutor + - React-utils - ReactCommon - SocketRocket - - React-cxxreact (0.82.0): + - React-cxxreact (0.83.1): - boost - DoubleConversion - fast_float @@ -428,19 +432,20 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.82.0) - - React-debug (= 0.82.0) - - React-jsi (= 0.82.0) + - React-callinvoker (= 0.83.1) + - React-debug (= 0.83.1) + - React-jsi (= 0.83.1) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - - React-logger (= 0.82.0) - - React-perflogger (= 0.82.0) + - React-logger (= 0.83.1) + - React-perflogger (= 0.83.1) - React-runtimeexecutor - - React-timing (= 0.82.0) + - React-timing (= 0.83.1) + - React-utils - SocketRocket - - React-debug (0.82.0) - - React-defaultsnativemodule (0.82.0): + - React-debug (0.83.1) + - React-defaultsnativemodule (0.83.1): - boost - DoubleConversion - fast_float @@ -450,15 +455,18 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-domnativemodule + - React-featureflags - React-featureflagsnativemodule - React-idlecallbacksnativemodule + - React-intersectionobservernativemodule - React-jsi - React-jsiexecutor - React-microtasksnativemodule - React-RCTFBReactNativeSpec - React-webperformancenativemodule - SocketRocket - - React-domnativemodule (0.82.0): + - Yoga + - React-domnativemodule (0.83.1): - boost - DoubleConversion - fast_float @@ -478,7 +486,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric (0.82.0): + - React-Fabric (0.83.1): - boost - DoubleConversion - fast_float @@ -492,23 +500,25 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.82.0) - - React-Fabric/attributedstring (= 0.82.0) - - React-Fabric/bridging (= 0.82.0) - - React-Fabric/componentregistry (= 0.82.0) - - React-Fabric/componentregistrynative (= 0.82.0) - - React-Fabric/components (= 0.82.0) - - React-Fabric/consistency (= 0.82.0) - - React-Fabric/core (= 0.82.0) - - React-Fabric/dom (= 0.82.0) - - React-Fabric/imagemanager (= 0.82.0) - - React-Fabric/leakchecker (= 0.82.0) - - React-Fabric/mounting (= 0.82.0) - - React-Fabric/observers (= 0.82.0) - - React-Fabric/scheduler (= 0.82.0) - - React-Fabric/telemetry (= 0.82.0) - - React-Fabric/templateprocessor (= 0.82.0) - - React-Fabric/uimanager (= 0.82.0) + - React-Fabric/animated (= 0.83.1) + - React-Fabric/animationbackend (= 0.83.1) + - React-Fabric/animations (= 0.83.1) + - React-Fabric/attributedstring (= 0.83.1) + - React-Fabric/bridging (= 0.83.1) + - React-Fabric/componentregistry (= 0.83.1) + - React-Fabric/componentregistrynative (= 0.83.1) + - React-Fabric/components (= 0.83.1) + - React-Fabric/consistency (= 0.83.1) + - React-Fabric/core (= 0.83.1) + - React-Fabric/dom (= 0.83.1) + - React-Fabric/imagemanager (= 0.83.1) + - React-Fabric/leakchecker (= 0.83.1) + - React-Fabric/mounting (= 0.83.1) + - React-Fabric/observers (= 0.83.1) + - React-Fabric/scheduler (= 0.83.1) + - React-Fabric/telemetry (= 0.83.1) + - React-Fabric/templateprocessor (= 0.83.1) + - React-Fabric/uimanager (= 0.83.1) - React-featureflags - React-graphics - React-jsi @@ -520,7 +530,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/animations (0.82.0): + - React-Fabric/animated (0.83.1): - boost - DoubleConversion - fast_float @@ -545,7 +555,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/attributedstring (0.82.0): + - React-Fabric/animationbackend (0.83.1): - boost - DoubleConversion - fast_float @@ -570,7 +580,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/bridging (0.82.0): + - React-Fabric/animations (0.83.1): - boost - DoubleConversion - fast_float @@ -595,7 +605,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistry (0.82.0): + - React-Fabric/attributedstring (0.83.1): - boost - DoubleConversion - fast_float @@ -620,7 +630,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/componentregistrynative (0.82.0): + - React-Fabric/bridging (0.83.1): - boost - DoubleConversion - fast_float @@ -645,7 +655,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components (0.82.0): + - React-Fabric/componentregistry (0.83.1): - boost - DoubleConversion - fast_float @@ -659,10 +669,6 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.82.0) - - React-Fabric/components/root (= 0.82.0) - - React-Fabric/components/scrollview (= 0.82.0) - - React-Fabric/components/view (= 0.82.0) - React-featureflags - React-graphics - React-jsi @@ -674,7 +680,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/legacyviewmanagerinterop (0.82.0): + - React-Fabric/componentregistrynative (0.83.1): - boost - DoubleConversion - fast_float @@ -699,7 +705,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/root (0.82.0): + - React-Fabric/components (0.83.1): - boost - DoubleConversion - fast_float @@ -713,6 +719,10 @@ PODS: - React-Core - React-cxxreact - React-debug + - React-Fabric/components/legacyviewmanagerinterop (= 0.83.1) + - React-Fabric/components/root (= 0.83.1) + - React-Fabric/components/scrollview (= 0.83.1) + - React-Fabric/components/view (= 0.83.1) - React-featureflags - React-graphics - React-jsi @@ -724,7 +734,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/scrollview (0.82.0): + - React-Fabric/components/legacyviewmanagerinterop (0.83.1): - boost - DoubleConversion - fast_float @@ -749,7 +759,57 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/components/view (0.82.0): + - React-Fabric/components/root (0.83.1): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/components/scrollview (0.83.1): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/components/view (0.83.1): - boost - DoubleConversion - fast_float @@ -776,7 +836,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-Fabric/consistency (0.82.0): + - React-Fabric/consistency (0.83.1): - boost - DoubleConversion - fast_float @@ -801,7 +861,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/core (0.82.0): + - React-Fabric/core (0.83.1): - boost - DoubleConversion - fast_float @@ -826,7 +886,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/dom (0.82.0): + - React-Fabric/dom (0.83.1): - boost - DoubleConversion - fast_float @@ -851,7 +911,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/imagemanager (0.82.0): + - React-Fabric/imagemanager (0.83.1): - boost - DoubleConversion - fast_float @@ -876,7 +936,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/leakchecker (0.82.0): + - React-Fabric/leakchecker (0.83.1): - boost - DoubleConversion - fast_float @@ -901,7 +961,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/mounting (0.82.0): + - React-Fabric/mounting (0.83.1): - boost - DoubleConversion - fast_float @@ -926,7 +986,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers (0.82.0): + - React-Fabric/observers (0.83.1): - boost - DoubleConversion - fast_float @@ -940,7 +1000,8 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.82.0) + - React-Fabric/observers/events (= 0.83.1) + - React-Fabric/observers/intersection (= 0.83.1) - React-featureflags - React-graphics - React-jsi @@ -952,7 +1013,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/observers/events (0.82.0): + - React-Fabric/observers/events (0.83.1): - boost - DoubleConversion - fast_float @@ -977,7 +1038,32 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/scheduler (0.82.0): + - React-Fabric/observers/intersection (0.83.1): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired + - RCTTypeSafety + - React-Core + - React-cxxreact + - React-debug + - React-featureflags + - React-graphics + - React-jsi + - React-jsiexecutor + - React-logger + - React-rendererdebug + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - ReactCommon/turbomodule/core + - SocketRocket + - React-Fabric/scheduler (0.83.1): - boost - DoubleConversion - fast_float @@ -1005,7 +1091,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/telemetry (0.82.0): + - React-Fabric/telemetry (0.83.1): - boost - DoubleConversion - fast_float @@ -1030,7 +1116,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/templateprocessor (0.82.0): + - React-Fabric/templateprocessor (0.83.1): - boost - DoubleConversion - fast_float @@ -1055,7 +1141,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager (0.82.0): + - React-Fabric/uimanager (0.83.1): - boost - DoubleConversion - fast_float @@ -1069,7 +1155,7 @@ PODS: - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.82.0) + - React-Fabric/uimanager/consistency (= 0.83.1) - React-featureflags - React-graphics - React-jsi @@ -1082,7 +1168,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-Fabric/uimanager/consistency (0.82.0): + - React-Fabric/uimanager/consistency (0.83.1): - boost - DoubleConversion - fast_float @@ -1108,7 +1194,7 @@ PODS: - React-utils - ReactCommon/turbomodule/core - SocketRocket - - React-FabricComponents (0.82.0): + - React-FabricComponents (0.83.1): - boost - DoubleConversion - fast_float @@ -1123,8 +1209,8 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.82.0) - - React-FabricComponents/textlayoutmanager (= 0.82.0) + - React-FabricComponents/components (= 0.83.1) + - React-FabricComponents/textlayoutmanager (= 0.83.1) - React-featureflags - React-graphics - React-jsi @@ -1137,7 +1223,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components (0.82.0): + - React-FabricComponents/components (0.83.1): - boost - DoubleConversion - fast_float @@ -1152,18 +1238,18 @@ PODS: - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.82.0) - - React-FabricComponents/components/iostextinput (= 0.82.0) - - React-FabricComponents/components/modal (= 0.82.0) - - React-FabricComponents/components/rncore (= 0.82.0) - - React-FabricComponents/components/safeareaview (= 0.82.0) - - React-FabricComponents/components/scrollview (= 0.82.0) - - React-FabricComponents/components/switch (= 0.82.0) - - React-FabricComponents/components/text (= 0.82.0) - - React-FabricComponents/components/textinput (= 0.82.0) - - React-FabricComponents/components/unimplementedview (= 0.82.0) - - React-FabricComponents/components/virtualview (= 0.82.0) - - React-FabricComponents/components/virtualviewexperimental (= 0.82.0) + - React-FabricComponents/components/inputaccessory (= 0.83.1) + - React-FabricComponents/components/iostextinput (= 0.83.1) + - React-FabricComponents/components/modal (= 0.83.1) + - React-FabricComponents/components/rncore (= 0.83.1) + - React-FabricComponents/components/safeareaview (= 0.83.1) + - React-FabricComponents/components/scrollview (= 0.83.1) + - React-FabricComponents/components/switch (= 0.83.1) + - React-FabricComponents/components/text (= 0.83.1) + - React-FabricComponents/components/textinput (= 0.83.1) + - React-FabricComponents/components/unimplementedview (= 0.83.1) + - React-FabricComponents/components/virtualview (= 0.83.1) + - React-FabricComponents/components/virtualviewexperimental (= 0.83.1) - React-featureflags - React-graphics - React-jsi @@ -1176,7 +1262,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/inputaccessory (0.82.0): + - React-FabricComponents/components/inputaccessory (0.83.1): - boost - DoubleConversion - fast_float @@ -1203,7 +1289,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/iostextinput (0.82.0): + - React-FabricComponents/components/iostextinput (0.83.1): - boost - DoubleConversion - fast_float @@ -1230,7 +1316,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/modal (0.82.0): + - React-FabricComponents/components/modal (0.83.1): - boost - DoubleConversion - fast_float @@ -1257,7 +1343,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/rncore (0.82.0): + - React-FabricComponents/components/rncore (0.83.1): - boost - DoubleConversion - fast_float @@ -1284,7 +1370,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/safeareaview (0.82.0): + - React-FabricComponents/components/safeareaview (0.83.1): - boost - DoubleConversion - fast_float @@ -1311,7 +1397,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/scrollview (0.82.0): + - React-FabricComponents/components/scrollview (0.83.1): - boost - DoubleConversion - fast_float @@ -1338,7 +1424,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/switch (0.82.0): + - React-FabricComponents/components/switch (0.83.1): - boost - DoubleConversion - fast_float @@ -1365,7 +1451,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/text (0.82.0): + - React-FabricComponents/components/text (0.83.1): - boost - DoubleConversion - fast_float @@ -1392,7 +1478,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/textinput (0.82.0): + - React-FabricComponents/components/textinput (0.83.1): - boost - DoubleConversion - fast_float @@ -1419,7 +1505,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/unimplementedview (0.82.0): + - React-FabricComponents/components/unimplementedview (0.83.1): - boost - DoubleConversion - fast_float @@ -1446,7 +1532,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/virtualview (0.82.0): + - React-FabricComponents/components/virtualview (0.83.1): - boost - DoubleConversion - fast_float @@ -1473,7 +1559,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/components/virtualviewexperimental (0.82.0): + - React-FabricComponents/components/virtualviewexperimental (0.83.1): - boost - DoubleConversion - fast_float @@ -1500,7 +1586,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricComponents/textlayoutmanager (0.82.0): + - React-FabricComponents/textlayoutmanager (0.83.1): - boost - DoubleConversion - fast_float @@ -1527,7 +1613,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-FabricImage (0.82.0): + - React-FabricImage (0.83.1): - boost - DoubleConversion - fast_float @@ -1536,21 +1622,21 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - RCTRequired (= 0.82.0) - - RCTTypeSafety (= 0.82.0) + - RCTRequired (= 0.83.1) + - RCTTypeSafety (= 0.83.1) - React-Fabric - React-featureflags - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.82.0) + - React-jsiexecutor (= 0.83.1) - React-logger - React-rendererdebug - React-utils - ReactCommon - SocketRocket - Yoga - - React-featureflags (0.82.0): + - React-featureflags (0.83.1): - boost - DoubleConversion - fast_float @@ -1559,7 +1645,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-featureflagsnativemodule (0.82.0): + - React-featureflagsnativemodule (0.83.1): - boost - DoubleConversion - fast_float @@ -1574,7 +1660,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - SocketRocket - - React-graphics (0.82.0): + - React-graphics (0.83.1): - boost - DoubleConversion - fast_float @@ -1587,7 +1673,7 @@ PODS: - React-jsiexecutor - React-utils - SocketRocket - - React-hermes (0.82.0): + - React-hermes (0.83.1): - boost - DoubleConversion - fast_float @@ -1596,17 +1682,17 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.82.0) + - React-cxxreact (= 0.83.1) - React-jsi - - React-jsiexecutor (= 0.82.0) + - React-jsiexecutor (= 0.83.1) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-oscompat - - React-perflogger (= 0.82.0) + - React-perflogger (= 0.83.1) - React-runtimeexecutor - SocketRocket - - React-idlecallbacksnativemodule (0.82.0): + - React-idlecallbacksnativemodule (0.83.1): - boost - DoubleConversion - fast_float @@ -1622,7 +1708,7 @@ PODS: - React-runtimescheduler - ReactCommon/turbomodule/core - SocketRocket - - React-ImageManager (0.82.0): + - React-ImageManager (0.83.1): - boost - DoubleConversion - fast_float @@ -1637,7 +1723,28 @@ PODS: - React-rendererdebug - React-utils - SocketRocket - - React-jserrorhandler (0.82.0): + - React-intersectionobservernativemodule (0.83.1): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact + - React-Fabric + - React-Fabric/bridging + - React-graphics + - React-jsi + - React-jsiexecutor + - React-RCTFBReactNativeSpec + - React-runtimeexecutor + - React-runtimescheduler + - ReactCommon/turbomodule/core + - SocketRocket + - Yoga + - React-jserrorhandler (0.83.1): - boost - DoubleConversion - fast_float @@ -1652,7 +1759,7 @@ PODS: - React-jsi - ReactCommon/turbomodule/bridging - SocketRocket - - React-jsi (0.82.0): + - React-jsi (0.83.1): - boost - DoubleConversion - fast_float @@ -1662,7 +1769,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsiexecutor (0.82.0): + - React-jsiexecutor (0.83.1): - boost - DoubleConversion - fast_float @@ -1679,8 +1786,9 @@ PODS: - React-jsinspectortracing - React-perflogger - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspector (0.82.0): + - React-jsinspector (0.83.1): - boost - DoubleConversion - fast_float @@ -1695,10 +1803,11 @@ PODS: - React-jsinspectornetwork - React-jsinspectortracing - React-oscompat - - React-perflogger (= 0.82.0) + - React-perflogger (= 0.83.1) - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsinspectorcdp (0.82.0): + - React-jsinspectorcdp (0.83.1): - boost - DoubleConversion - fast_float @@ -1707,7 +1816,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-jsinspectornetwork (0.82.0): + - React-jsinspectornetwork (0.83.1): - boost - DoubleConversion - fast_float @@ -1715,23 +1824,23 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-featureflags - React-jsinspectorcdp - - React-performancetimeline - - React-timing - SocketRocket - - React-jsinspectortracing (0.82.0): + - React-jsinspectortracing (0.83.1): - boost - DoubleConversion - fast_float - fmt - glog + - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - React-jsi + - React-jsinspectornetwork - React-oscompat - React-timing - SocketRocket - - React-jsitooling (0.82.0): + - React-jsitooling (0.83.1): - boost - DoubleConversion - fast_float @@ -1739,17 +1848,18 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - React-cxxreact (= 0.82.0) + - React-cxxreact (= 0.83.1) - React-debug - - React-jsi (= 0.82.0) + - React-jsi (= 0.83.1) - React-jsinspector - React-jsinspectorcdp - React-jsinspectortracing - React-runtimeexecutor + - React-utils - SocketRocket - - React-jsitracing (0.82.0): + - React-jsitracing (0.83.1): - React-jsi - - React-logger (0.82.0): + - React-logger (0.83.1): - boost - DoubleConversion - fast_float @@ -1758,7 +1868,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-Mapbuffer (0.82.0): + - React-Mapbuffer (0.83.1): - boost - DoubleConversion - fast_float @@ -1768,7 +1878,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-microtasksnativemodule (0.82.0): + - React-microtasksnativemodule (0.83.1): - boost - DoubleConversion - fast_float @@ -1901,7 +2011,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - React-NativeModulesApple (0.82.0): + - React-NativeModulesApple (0.83.1): - boost - DoubleConversion - fast_float @@ -1922,8 +2032,22 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - React-oscompat (0.82.0) - - React-perflogger (0.82.0): + - React-networking (0.83.1): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - React-featureflags + - React-jsinspectornetwork + - React-jsinspectortracing + - React-performancetimeline + - React-timing + - SocketRocket + - React-oscompat (0.83.1) + - React-perflogger (0.83.1): - boost - DoubleConversion - fast_float @@ -1932,7 +2056,7 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - SocketRocket - - React-performancecdpmetrics (0.82.0): + - React-performancecdpmetrics (0.83.1): - boost - DoubleConversion - fast_float @@ -1946,7 +2070,7 @@ PODS: - React-runtimeexecutor - React-timing - SocketRocket - - React-performancetimeline (0.82.0): + - React-performancetimeline (0.83.1): - boost - DoubleConversion - fast_float @@ -1959,9 +2083,9 @@ PODS: - React-perflogger - React-timing - SocketRocket - - React-RCTActionSheet (0.82.0): - - React-Core/RCTActionSheetHeaders (= 0.82.0) - - React-RCTAnimation (0.82.0): + - React-RCTActionSheet (0.83.1): + - React-Core/RCTActionSheetHeaders (= 0.83.1) + - React-RCTAnimation (0.83.1): - boost - DoubleConversion - fast_float @@ -1977,7 +2101,7 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTAppDelegate (0.82.0): + - React-RCTAppDelegate (0.83.1): - boost - DoubleConversion - fast_float @@ -2011,7 +2135,7 @@ PODS: - React-utils - ReactCommon - SocketRocket - - React-RCTBlob (0.82.0): + - React-RCTBlob (0.83.1): - boost - DoubleConversion - fast_float @@ -2030,7 +2154,7 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTFabric (0.82.0): + - React-RCTFabric (0.83.1): - boost - DoubleConversion - fast_float @@ -2039,6 +2163,7 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - RCTSwiftUIWrapper - React-Core - React-debug - React-Fabric @@ -2050,8 +2175,8 @@ PODS: - React-jsi - React-jsinspector - React-jsinspectorcdp - - React-jsinspectornetwork - React-jsinspectortracing + - React-networking - React-performancecdpmetrics - React-performancetimeline - React-RCTAnimation @@ -2066,7 +2191,7 @@ PODS: - React-utils - SocketRocket - Yoga - - React-RCTFBReactNativeSpec (0.82.0): + - React-RCTFBReactNativeSpec (0.83.1): - boost - DoubleConversion - fast_float @@ -2080,10 +2205,10 @@ PODS: - React-Core - React-jsi - React-NativeModulesApple - - React-RCTFBReactNativeSpec/components (= 0.82.0) + - React-RCTFBReactNativeSpec/components (= 0.83.1) - ReactCommon - SocketRocket - - React-RCTFBReactNativeSpec/components (0.82.0): + - React-RCTFBReactNativeSpec/components (0.83.1): - boost - DoubleConversion - fast_float @@ -2106,7 +2231,7 @@ PODS: - ReactCommon - SocketRocket - Yoga - - React-RCTImage (0.82.0): + - React-RCTImage (0.83.1): - boost - DoubleConversion - fast_float @@ -2122,14 +2247,14 @@ PODS: - React-RCTNetwork - ReactCommon - SocketRocket - - React-RCTLinking (0.82.0): - - React-Core/RCTLinkingHeaders (= 0.82.0) - - React-jsi (= 0.82.0) + - React-RCTLinking (0.83.1): + - React-Core/RCTLinkingHeaders (= 0.83.1) + - React-jsi (= 0.83.1) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.82.0) - - React-RCTNetwork (0.82.0): + - ReactCommon/turbomodule/core (= 0.83.1) + - React-RCTNetwork (0.83.1): - boost - DoubleConversion - fast_float @@ -2145,10 +2270,11 @@ PODS: - React-jsinspectorcdp - React-jsinspectornetwork - React-NativeModulesApple + - React-networking - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTRuntime (0.82.0): + - React-RCTRuntime (0.83.1): - boost - DoubleConversion - fast_float @@ -2168,8 +2294,9 @@ PODS: - React-RuntimeCore - React-runtimeexecutor - React-RuntimeHermes + - React-utils - SocketRocket - - React-RCTSettings (0.82.0): + - React-RCTSettings (0.83.1): - boost - DoubleConversion - fast_float @@ -2184,10 +2311,10 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-RCTText (0.82.0): - - React-Core/RCTTextHeaders (= 0.82.0) + - React-RCTText (0.83.1): + - React-Core/RCTTextHeaders (= 0.83.1) - Yoga - - React-RCTVibration (0.82.0): + - React-RCTVibration (0.83.1): - boost - DoubleConversion - fast_float @@ -2201,11 +2328,11 @@ PODS: - React-RCTFBReactNativeSpec - ReactCommon - SocketRocket - - React-rendererconsistency (0.82.0) - - React-renderercss (0.82.0): + - React-rendererconsistency (0.83.1) + - React-renderercss (0.83.1): - React-debug - React-utils - - React-rendererdebug (0.82.0): + - React-rendererdebug (0.83.1): - boost - DoubleConversion - fast_float @@ -2215,7 +2342,7 @@ PODS: - RCT-Folly/Fabric - React-debug - SocketRocket - - React-RuntimeApple (0.82.0): + - React-RuntimeApple (0.83.1): - boost - DoubleConversion - fast_float @@ -2244,7 +2371,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-RuntimeCore (0.82.0): + - React-RuntimeCore (0.83.1): - boost - DoubleConversion - fast_float @@ -2266,7 +2393,7 @@ PODS: - React-runtimescheduler - React-utils - SocketRocket - - React-runtimeexecutor (0.82.0): + - React-runtimeexecutor (0.83.1): - boost - DoubleConversion - fast_float @@ -2276,10 +2403,10 @@ PODS: - RCT-Folly/Fabric - React-debug - React-featureflags - - React-jsi (= 0.82.0) + - React-jsi (= 0.83.1) - React-utils - SocketRocket - - React-RuntimeHermes (0.82.0): + - React-RuntimeHermes (0.83.1): - boost - DoubleConversion - fast_float @@ -2300,7 +2427,7 @@ PODS: - React-runtimeexecutor - React-utils - SocketRocket - - React-runtimescheduler (0.82.0): + - React-runtimescheduler (0.83.1): - boost - DoubleConversion - fast_float @@ -2322,9 +2449,9 @@ PODS: - React-timing - React-utils - SocketRocket - - React-timing (0.82.0): + - React-timing (0.83.1): - React-debug - - React-utils (0.82.0): + - React-utils (0.83.1): - boost - DoubleConversion - fast_float @@ -2334,9 +2461,9 @@ PODS: - RCT-Folly - RCT-Folly/Fabric - React-debug - - React-jsi (= 0.82.0) + - React-jsi (= 0.83.1) - SocketRocket - - React-webperformancenativemodule (0.82.0): + - React-webperformancenativemodule (0.83.1): - boost - DoubleConversion - fast_float @@ -2345,6 +2472,7 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric + - React-cxxreact - React-jsi - React-jsiexecutor - React-performancetimeline @@ -2352,9 +2480,9 @@ PODS: - React-runtimeexecutor - ReactCommon/turbomodule/core - SocketRocket - - ReactAppDependencyProvider (0.82.0): + - ReactAppDependencyProvider (0.83.1): - ReactCodegen - - ReactCodegen (0.82.0): + - ReactCodegen (0.83.1): - boost - DoubleConversion - fast_float @@ -2380,7 +2508,7 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - SocketRocket - - ReactCommon (0.82.0): + - ReactCommon (0.83.1): - boost - DoubleConversion - fast_float @@ -2388,9 +2516,9 @@ PODS: - glog - RCT-Folly - RCT-Folly/Fabric - - ReactCommon/turbomodule (= 0.82.0) + - ReactCommon/turbomodule (= 0.83.1) - SocketRocket - - ReactCommon/turbomodule (0.82.0): + - ReactCommon/turbomodule (0.83.1): - boost - DoubleConversion - fast_float @@ -2399,15 +2527,15 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.82.0) - - React-cxxreact (= 0.82.0) - - React-jsi (= 0.82.0) - - React-logger (= 0.82.0) - - React-perflogger (= 0.82.0) - - ReactCommon/turbomodule/bridging (= 0.82.0) - - ReactCommon/turbomodule/core (= 0.82.0) + - React-callinvoker (= 0.83.1) + - React-cxxreact (= 0.83.1) + - React-jsi (= 0.83.1) + - React-logger (= 0.83.1) + - React-perflogger (= 0.83.1) + - ReactCommon/turbomodule/bridging (= 0.83.1) + - ReactCommon/turbomodule/core (= 0.83.1) - SocketRocket - - ReactCommon/turbomodule/bridging (0.82.0): + - ReactCommon/turbomodule/bridging (0.83.1): - boost - DoubleConversion - fast_float @@ -2416,13 +2544,13 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.82.0) - - React-cxxreact (= 0.82.0) - - React-jsi (= 0.82.0) - - React-logger (= 0.82.0) - - React-perflogger (= 0.82.0) + - React-callinvoker (= 0.83.1) + - React-cxxreact (= 0.83.1) + - React-jsi (= 0.83.1) + - React-logger (= 0.83.1) + - React-perflogger (= 0.83.1) - SocketRocket - - ReactCommon/turbomodule/core (0.82.0): + - ReactCommon/turbomodule/core (0.83.1): - boost - DoubleConversion - fast_float @@ -2431,14 +2559,14 @@ PODS: - hermes-engine - RCT-Folly - RCT-Folly/Fabric - - React-callinvoker (= 0.82.0) - - React-cxxreact (= 0.82.0) - - React-debug (= 0.82.0) - - React-featureflags (= 0.82.0) - - React-jsi (= 0.82.0) - - React-logger (= 0.82.0) - - React-perflogger (= 0.82.0) - - React-utils (= 0.82.0) + - React-callinvoker (= 0.83.1) + - React-cxxreact (= 0.83.1) + - React-debug (= 0.83.1) + - React-featureflags (= 0.83.1) + - React-jsi (= 0.83.1) + - React-logger (= 0.83.1) + - React-perflogger (= 0.83.1) + - React-utils (= 0.83.1) - SocketRocket - RNAudioAPI (0.11.0): - boost @@ -2555,7 +2683,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - RNGestureHandler (2.28.0): + - RNGestureHandler (2.30.0): - boost - DoubleConversion - fast_float @@ -2583,7 +2711,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - RNReanimated (4.1.3): + - RNReanimated (4.2.1): - boost - DoubleConversion - fast_float @@ -2610,11 +2738,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated (= 4.1.3) + - RNReanimated/reanimated (= 4.2.1) - RNWorklets - SocketRocket - Yoga - - RNReanimated/reanimated (4.1.3): + - RNReanimated/reanimated (4.2.1): - boost - DoubleConversion - fast_float @@ -2641,11 +2769,11 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated/apple (= 4.1.3) + - RNReanimated/reanimated/apple (= 4.2.1) - RNWorklets - SocketRocket - Yoga - - RNReanimated/reanimated/apple (4.1.3): + - RNReanimated/reanimated/apple (4.2.1): - boost - DoubleConversion - fast_float @@ -2675,7 +2803,7 @@ PODS: - RNWorklets - SocketRocket - Yoga - - RNScreens (4.18.0): + - RNScreens (4.19.0): - boost - DoubleConversion - fast_float @@ -2702,10 +2830,10 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNScreens/common (= 4.18.0) + - RNScreens/common (= 4.19.0) - SocketRocket - Yoga - - RNScreens/common (4.18.0): + - RNScreens/common (4.19.0): - boost - DoubleConversion - fast_float @@ -2791,7 +2919,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - RNWorklets (0.6.1): + - RNWorklets (0.7.1): - boost - DoubleConversion - fast_float @@ -2818,10 +2946,10 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNWorklets/worklets (= 0.6.1) + - RNWorklets/worklets (= 0.7.1) - SocketRocket - Yoga - - RNWorklets/worklets (0.6.1): + - RNWorklets/worklets (0.7.1): - boost - DoubleConversion - fast_float @@ -2848,10 +2976,10 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNWorklets/worklets/apple (= 0.6.1) + - RNWorklets/worklets/apple (= 0.7.1) - SocketRocket - Yoga - - RNWorklets/worklets/apple (0.6.1): + - RNWorklets/worklets/apple (0.7.1): - boost - DoubleConversion - fast_float @@ -2894,6 +3022,8 @@ DEPENDENCIES: - RCT-Folly (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`) + - RCTSwiftUI (from `../../../node_modules/react-native/ReactApple/RCTSwiftUI`) + - RCTSwiftUIWrapper (from `../../../node_modules/react-native/ReactApple/RCTSwiftUIWrapper`) - RCTTypeSafety (from `../../../node_modules/react-native/Libraries/TypeSafety`) - React (from `../../../node_modules/react-native/`) - React-callinvoker (from `../../../node_modules/react-native/ReactCommon/callinvoker`) @@ -2913,6 +3043,7 @@ DEPENDENCIES: - 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-intersectionobservernativemodule (from `../../../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver`) - 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`) @@ -2929,6 +3060,7 @@ DEPENDENCIES: - react-native-safe-area-context (from `../../../node_modules/react-native-safe-area-context`) - "react-native-skia (from `../../../node_modules/@shopify/react-native-skia`)" - React-NativeModulesApple (from `../../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`) + - React-networking (from `../../../node_modules/react-native/ReactCommon/react/networking`) - React-oscompat (from `../../../node_modules/react-native/ReactCommon/oscompat`) - React-perflogger (from `../../../node_modules/react-native/ReactCommon/reactperflogger`) - React-performancecdpmetrics (from `../../../node_modules/react-native/ReactCommon/react/performance/cdpmetrics`) @@ -2957,8 +3089,8 @@ DEPENDENCIES: - React-timing (from `../../../node_modules/react-native/ReactCommon/react/timing`) - React-utils (from `../../../node_modules/react-native/ReactCommon/react/utils`) - React-webperformancenativemodule (from `../../../node_modules/react-native/ReactCommon/react/nativemodule/webperformance`) - - ReactAppDependencyProvider (from `build/generated/ios`) - - ReactCodegen (from `build/generated/ios`) + - ReactAppDependencyProvider (from `build/generated/ios/ReactAppDependencyProvider`) + - ReactCodegen (from `build/generated/ios/ReactCodegen`) - ReactCommon/turbomodule/core (from `../../../node_modules/react-native/ReactCommon`) - RNAudioAPI (from `../../../node_modules/react-native-audio-api`) - RNGestureHandler (from `../../../node_modules/react-native-gesture-handler`) @@ -2988,13 +3120,17 @@ EXTERNAL SOURCES: :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-2025-09-01-RNv0.82.0-265ef62ff3eb7289d17e366664ac0da82303e101 + :tag: hermes-v0.14.0 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/Required" + RCTSwiftUI: + :path: "../../../node_modules/react-native/ReactApple/RCTSwiftUI" + RCTSwiftUIWrapper: + :path: "../../../node_modules/react-native/ReactApple/RCTSwiftUIWrapper" RCTTypeSafety: :path: "../../../node_modules/react-native/Libraries/TypeSafety" React: @@ -3031,6 +3167,8 @@ EXTERNAL SOURCES: :path: "../../../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks" React-ImageManager: :path: "../../../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios" + React-intersectionobservernativemodule: + :path: "../../../node_modules/react-native/ReactCommon/react/nativemodule/intersectionobserver" React-jserrorhandler: :path: "../../../node_modules/react-native/ReactCommon/jserrorhandler" React-jsi: @@ -3063,6 +3201,8 @@ EXTERNAL SOURCES: :path: "../../../node_modules/@shopify/react-native-skia" React-NativeModulesApple: :path: "../../../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios" + React-networking: + :path: "../../../node_modules/react-native/ReactCommon/react/networking" React-oscompat: :path: "../../../node_modules/react-native/ReactCommon/oscompat" React-perflogger: @@ -3120,9 +3260,9 @@ EXTERNAL SOURCES: React-webperformancenativemodule: :path: "../../../node_modules/react-native/ReactCommon/react/nativemodule/webperformance" ReactAppDependencyProvider: - :path: build/generated/ios + :path: build/generated/ios/ReactAppDependencyProvider ReactCodegen: - :path: build/generated/ios + :path: build/generated/ios/ReactCodegen ReactCommon: :path: "../../../node_modules/react-native/ReactCommon" RNAudioAPI: @@ -3144,86 +3284,90 @@ SPEC CHECKSUMS: boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 - FBLazyVector: 41b4dd99afd0aad861444ee141abdedaa6c3d238 + FBLazyVector: 309703e71d3f2f1ed7dc7889d58309c9d77a95a4 fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 - hermes-engine: 8642d8f14a548ab718ec112e9bebdfdd154138b5 + hermes-engine: f93b5009d8ccd9429fe2a772351980df8a22a413 RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669 - RCTDeprecation: 22bf66112da540a7d40e536366ddd8557934fca1 - RCTRequired: a0ed4dc41b35f79fbb6d8ba320e06882a8c792cf - RCTTypeSafety: 59a046ff1e602409a86b89fcd6edff367a5b14af - React: ade831e2e38887292c2c7d40f2f4098826a9dda4 - React-callinvoker: fb097304922c5da47152147a5fb0712713438575 - React-Core: 60e3adb5af2863587d4a0650a0bbf8d5b1327502 - React-CoreModules: 8647d480cf788eb0e0ae353db836dbb5edb98eb0 - React-cxxreact: 2be8c8494b345bd1896f542bafc18dff72335c55 - React-debug: c855f7565d8c4aeceb23219ca3baa0e1ebfb578a - React-defaultsnativemodule: 88870580c41100965ead4ae46b7e6b47825e1c9a - React-domnativemodule: 5624a09547dbf9e01bd4274a4ec5666209bb96bf - React-Fabric: 95df97f2ee3469efa70f37d7e23109b43405c683 - React-FabricComponents: c2718daaee02101a4e4958e35abcf038c5f8525e - React-FabricImage: 46deb618808c5f211ac91ad8a417a955c96d3b93 - React-featureflags: 37120df645adeaa3d634f15bfb3f47bf3701147f - React-featureflagsnativemodule: 8afcb75324b1ba0d2174b88d4c413b0512345014 - React-graphics: 43dbe83e403ec3dec26b41f7c484c4d8a5fee656 - React-hermes: 5061dfbb68b7cc4a015302b4c9125c5d7426f9f9 - React-idlecallbacksnativemodule: 9e1782dce65fed2fb2f7b1049274dad9cbb76f9a - React-ImageManager: 119a820c7c207d7fcbdd3386f74856dc071d3040 - React-jserrorhandler: 2d2c2c3ac205ce415fc36d51c300bec6f74449d0 - React-jsi: a884efb76496c1492c8063918d5588f3e2ab8b42 - React-jsiexecutor: 47e858b79890e212469a76d61edd871b1444e869 - React-jsinspector: 80d4292bdf4163de86564ee7b8384f7d4e40df8c - React-jsinspectorcdp: 26ddf22f569bc8bf1ebd4d644de53614d68eba92 - React-jsinspectornetwork: c8a66abfc5928b00a1729a97314207e4c8a1790c - React-jsinspectortracing: bf319882c2ef5ec76bb2ba1632fbd388cfeea569 - React-jsitooling: fa5a0040eeb62e2340c2fad1732735ae449bcd38 - React-jsitracing: 2c6bf5ef2527c6fe1ee55faa950c70f1a5e7cd8e - React-logger: 30adf849117e87cf86e88dca1824bb0f18f87e10 - React-Mapbuffer: 499069c3dcd4b438a70fcc2a65e8a4185ea9170b - React-microtasksnativemodule: f0238469cb9894fd18c419137d312665b8fc05b3 + RCTDeprecation: a41bbdd9af30bf2e5715796b313e44ec43eefff1 + RCTRequired: 7be34aabb0b77c3cefe644528df0fa0afad4e4d0 + RCTSwiftUI: a6c7271c39098bf00dbdad8f8ed997a59bbfbe44 + RCTSwiftUIWrapper: ff9098ccf7727e58218f2f8ea110349863f43438 + RCTTypeSafety: 27927d0ca04e419ed9467578b3e6297e37210b5c + React: 4bc1f928568ad4bcfd147260f907b4ea5873a03b + React-callinvoker: 87f8728235a0dc62e9dc19b3851c829d9347d015 + React-Core: 76bed73b02821e5630e7f2cb2e82432ee964695d + React-CoreModules: 752dbfdaeb096658aa0adc4a03ba6214815a08df + React-cxxreact: b6798528aa601c6db66e6adc7e2da2b059c8be74 + React-debug: 8978deb306f6f38c28b5091e52b0ac9f942b157e + React-defaultsnativemodule: 682b77ef4acfb298017be15f4f93c1d998deb174 + React-domnativemodule: 4c4b44f7eb68dbc3a2218db088bef318a7302017 + React-Fabric: b6f82a4d8498ce4475586f71ca8397a771fe292d + React-FabricComponents: c8695f4b11918a127c4560d66f7d3fdb01a17986 + React-FabricImage: d64f48830f63830e8ffaaf69fa487116856fbbf1 + React-featureflags: 2a46b229903e906d33dbaf9207ce57c59306c369 + React-featureflagsnativemodule: cba6c0814051a0934f8bcee4a436ee2a6bcc9754 + React-graphics: 3d0435051e1ab8904d065f8ffbe981a9fc202841 + React-hermes: 32fc9c231c1aa5c2fcfe851b0d19ee9269f88f4c + React-idlecallbacksnativemodule: f8ee42581795c4844d97147596bcc2d824c0f188 + React-ImageManager: e8f7377ef0585fd2df05559a17e01a03e187d5cf + React-intersectionobservernativemodule: b1bea12ca29accdd2eda60c87605a6030b894eb9 + React-jserrorhandler: 1a86df895b4eaf4e771abe8cf34cbb26d821f771 + React-jsi: adf8527fec197ad9d0480cc5b8945eb56de627f0 + React-jsiexecutor: 315fa2f879b43e3a9ca08f5f4b733472f7e4e8a4 + React-jsinspector: b4fd1933666bcb2549b566b40656c1e45e9d7632 + React-jsinspectorcdp: 80141710f2668e5b8f00417298d9b76b4abf90fa + React-jsinspectornetwork: 1d3ea717dbbec316cd8c21a0af53928a7bf74901 + React-jsinspectortracing: 4ce745374d4b2bfbd164cce9f8de8383d3d818a0 + React-jsitooling: fc4ac4c3b1f3f9f7fedf0c777c6ff3f244f568bd + React-jsitracing: bff08a6faeef4a9bd286487da191f5e5329e21a9 + React-logger: b8483fa08e0d62e430c76d864309d90576ca2f68 + React-Mapbuffer: 7b72a669e94662359dad4f42b5af005eb24b4e83 + React-microtasksnativemodule: cdc02da075f2857803ed63f24f5f72fc40e094c0 react-native-background-timer: 4638ae3bee00320753647900b21260b10587b6f7 react-native-safe-area-context: c6e2edd1c1da07bdce287fa9d9e60c5f7b514616 react-native-skia: 8e3c5893395ca264caaace69e43d2533e6b7e906 - React-NativeModulesApple: 628df250681ccb569bd203494ed5187269580d6f - React-oscompat: 80ca388c4831481cd03a6b45ecfc82739ca9a95e - React-perflogger: 9725c8b401ca406f52e4bb59bf0b22ef9354f96a - React-performancecdpmetrics: b8bfac3d66e8ba7aede1e3629f786e6450838e99 - React-performancetimeline: 848b4852baa600174446670f9fab860da2bd1d88 - React-RCTActionSheet: 2f0a844b3f4b749ce54bee10e5006aacbcb754e0 - React-RCTAnimation: 680cd054a53b6525b587e6e1f1aeb885135e28cd - React-RCTAppDelegate: 5f8969018d773b22ca0b4c9679c3bad73767c5c7 - React-RCTBlob: 9bcdb5549e877fc08684f129047fbf029e37eabe - React-RCTFabric: 06c4c93dffb204c9a54f8ab41c0a0a24ec209cdd - React-RCTFBReactNativeSpec: afd34c1c42b0f1d306a57c9d1c63e9993c41f3cf - React-RCTImage: 937d9ebf5b92f688c2c501de731af47a4df2c208 - React-RCTLinking: b0fde8f005ffd6bdbb9e274a8f132f0e61cb0185 - React-RCTNetwork: 0c23d5f6a3544c98065fed622ef7ed2bce593cb5 - React-RCTRuntime: 158407a5a2edfc3ab01aa4c301c8d246e234a328 - React-RCTSettings: 093d5fba8bfb4c80a409b06f1e99156e4b7ffa8b - React-RCTText: 286dc4b5314a45b8beb8d06d7fd46b0f9da264ac - React-RCTVibration: 080c11b0ec39f1202bbd91e468dba50894fe4233 - React-rendererconsistency: 74f53d2a1fa3bd87ed3fdbc83ad69cecf4bd0cb7 - React-renderercss: 564483d161020cec10e91a364c2d4fabad91c13e - React-rendererdebug: bdf0a36e11247b67c8c13095c7512f0ad3197d2f - React-RuntimeApple: 881afe60c37cf1ce5af6e84952cb1bb05237222c - React-RuntimeCore: e796152403fee6a4ad7263e767ce78a4dd15a8d5 - React-runtimeexecutor: 5cd2fbb140e093ead45632e7558bda5e816acebd - React-RuntimeHermes: 113d9aca75644e8bbcf976d4b53e58c3f2666591 - React-runtimescheduler: c0a466837f8ac8e6f009aff038d2cedc4b401650 - React-timing: 89ea436bb6d784f3ec4648e40ffd0492f7b1ea33 - React-utils: 96191b0f5e02b57c70a4bbf7b6f6721958e1d369 - React-webperformancenativemodule: 9c76ddf8d1a243e2eecd7ce1aeadb46ceccbdbd2 - ReactAppDependencyProvider: c5c4f5280e4ae0f9f4a739c64c4260fe0b3edaf1 - ReactCodegen: 096bbbb2498ca55f385e2fbd465bfa0211ee8295 - ReactCommon: 25c7f94aee74ddd93a8287756a8ac0830a309544 + React-NativeModulesApple: a2c3d2cbec893956a5b3e4060322db2984fff75b + React-networking: 3f98bd96893a294376e7e03730947a08d474c380 + React-oscompat: 80166b66da22e7af7fad94474e9997bd52d4c8c6 + React-perflogger: d6797918d2b1031e91a9d8f5e7fdd2c8728fb390 + React-performancecdpmetrics: 5570be61e2f97c4741c5d432c91570e8e5a39892 + React-performancetimeline: 5763499ae1991fc18dcf416e340ce7bc829bb298 + React-RCTActionSheet: 3bd5f5db9f983cf38d51bb9a7a198e2ebea94821 + React-RCTAnimation: 46a9978f27dc434dbeed16afa7b82619b690a9af + React-RCTAppDelegate: 62ecd60a2b2a8cae26ce6a066bfa59cfde97af01 + React-RCTBlob: 8285c859513023ee3cc8c806d9b59d4da078c4ba + React-RCTFabric: 05ed09347e938de985052f791a6a0698816d5761 + React-RCTFBReactNativeSpec: 83ba579fca9a51e774ac32578ef5dd3262edd7e2 + React-RCTImage: a5364d0f098692cfbf5bef1e8a63e7712ecb14b7 + React-RCTLinking: 34b63b0aa0e92d30f5d7aa2c255a8f95fa75ee8f + React-RCTNetwork: 1ef88b7a5310b8f915d3556b5b247def113191ed + React-RCTRuntime: ed29cf68a46782fec891e5afe1d8d758ca6ccd9b + React-RCTSettings: 2c45623d6c0f30851a123f621eb9d32298bcbb0c + React-RCTText: 0ee70f5dc18004b4d81b2c214267c6cbec058587 + React-RCTVibration: 88557e21e7cc3fe76b5b174cba28ff45c6def997 + React-rendererconsistency: d280314a3e7f0097152f89e815b4de821c2be8b9 + React-renderercss: f8cbf83d95c2c2bbf893d37fe50c73f046584411 + React-rendererdebug: 37216ddfcd38e49d1e92bf9052ea4bc9d7b932e5 + React-RuntimeApple: 1c0e7cb8e1c2c5775585afcaaa666ec151629a8d + React-RuntimeCore: 925fe2ca24cf8e6ed87586dbb92827306b93b83f + React-runtimeexecutor: 962dae024f6df760d029512a7d99e3f73d570935 + React-RuntimeHermes: 19a7c59ec1bc9908516f0bbc29b49425f6ec64ba + React-runtimescheduler: 62f21127cd97f4d8f164eee5150d3ce53dd36f66 + React-timing: 8757bf6fb96227c264f2d1609f4ba5c68217b8ce + React-utils: 8ab26781c2f5c2f7fafb2022c8ab39d39f231b80 + React-webperformancenativemodule: 7953b7fe519f76fa595111fe18ff3d5de131bfe9 + ReactAppDependencyProvider: 0eb286cc274abb059ee601b862ebddac2e681d01 + ReactCodegen: b8e56b780fffe6edd6405be0af4a1e3049a937f7 + ReactCommon: ac934cb340aee91282ecd6f273a26d24d4c55cae RNAudioAPI: 05b3e78da312dd4f5b42fae8a4b1652911db84a3 - RNGestureHandler: f1dd7f92a0faa2868a919ab53bb9d66eb4ebfcf5 - RNReanimated: e4993dd98196c698cbacc1441a4ac5b855ae56dc - RNScreens: d821082c6dd1cb397cc0c98b026eeafaa68be479 - RNSVG: 8c0bbfa480a24b24468f1c76bd852a4aac3178e6 - RNWorklets: d4553da98908962b6b834d5f2d26525b0d6840ad + RNGestureHandler: cd4be101cfa17ea6bbd438710caa02e286a84381 + RNReanimated: 132940c4c15ca2757f4f7d1fd7c9c3c01dbc4689 + RNScreens: ffbb0296608eb3560de641a711bbdb663ed1f6b4 + RNSVG: 11354d28dd6cb71a59570b68c91ba6772a2d781d + RNWorklets: f2ed333c600377955ac5ab798a14210805de846d SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 - Yoga: edeb9900b9e5bb5b27b9a6a2d5914e4fe4033c1b + Yoga: 5456bb010373068fc92221140921b09d126b116e PODFILE CHECKSUM: 600f614ad7cebe4fe3410664e0649edd98eb68ad