react / react/react-native

iOS: updateOSDeploymentTarget skips resource-bundle targets, so Xcode 27 fails the build with "deployment target ... supported range is 15.0"

Đang mở Phù hợp với người mới
#58,555 4 bình luận 1 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Needs: Author Feedback Needs: Repro
Ngôn ngữ chính
C++
Star
127k
Fork
25.3k
Merge trung bình
1 ngày 23 giờ
Pull request đã merge (30 ngày)
4

Mô tả

Description

Xcode 27 (27A266a, iOS 27.0 SDK) turns "deployment target below the supported range" from a warning into a hard build error, and the supported range now starts at iOS 15.0. A React Native app fails to build because several CocoaPods resource-bundle targets still carry the deployment target declared in their podspec s.platform (9.0 / 12.4 / 13.4 / 14.0).

react_native_post_install already lifts pod targets to min_ios_version_supported via ReactNativePodsUtils.updateOSDeploymentTarget, but that method only iterates target_installation_result.native_target:

https://github.com/react/react-native/blob/a17fbb48e065a0ba0328538f997ae08b228be6af/packages/react-native/scripts/cocoapods/utils.rb#L435-L445

Each pod's resource_bundle_targets (PrivacyInfo bundles, asset bundles) are never visited, so they keep the podspec value and Xcode 27 rejects them. The library targets of the very same pods build fine because they were floored to 15.1; only their resource bundles fail. The method is identical on main, 0.87.1 and 0.83.10.

Fixing this per-package is not viable: the newest releases of react-native-device-info (15.0.2), react-native-image-picker (8.2.1), react-native-svg (15.15.5) and RiveRuntime (6.23.1) still declare platform minimums below 15, and a resource bundle's deployment target is assigned by CocoaPods, not by anything the app controls. Since React Native already owns the deployment-target floor for library targets, the floor should cover resource-bundle targets too.

Proposed fix

turn_off_resource_bundle_react_core in the same file already iterates resource_bundle_targets (https://github.com/react/react-native/blob/a17fbb48e065a0ba0328538f997ae08b228be6af/packages/react-native/scripts/cocoapods/utils.rb#L141), so this is the same traversal RN uses elsewhere:

def self.updateOSDeploymentTarget(installer)
    min_version = Helpers::Constants.min_ios_version_supported
    installer.target_installation_results.pod_target_installation_results
        .each do |pod_name, target_installation_result|
            targets = [target_installation_result.native_target] + target_installation_result.resource_bundle_targets
            targets.each do |target|
                target.build_configurations.each do |config|
                    old_iphone_deploy_target = config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] ?
                        config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] :
                        min_version
                    config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = [min_version.to_f, old_iphone_deploy_target.to_f].max.to_s
                end
            end
        end
end

Happy to open a PR with this change if maintainers prefer.

Workaround

In the app Podfile post_install, after react_native_post_install:

installer.pods_project.targets.each do |target|
  target.build_configurations.each do |config|
    if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < min_ios_version_supported.to_f
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = min_ios_version_supported
    end
  end
end

With this in place all 260 IPHONEOS_DEPLOYMENT_TARGET entries in Pods.xcodeproj read 15.1 and the build succeeds on Xcode 27.

Steps to reproduce
  1. npx @react-native-community/cli init Repro --version 0.83.1 (also reproduces with 0.87.1).
  2. Add any dependency whose podspec declares an old platform and ships a PrivacyInfo.xcprivacy resource bundle, e.g. react-native-device-info@15.0.2 (s.platforms = { :ios => "9.0" }).
  3. cd ios && RCT_NEW_ARCH_ENABLED=1 pod install.
  4. grep "IPHONEOS_DEPLOYMENT_TARGET = " Pods/Pods.xcodeproj/project.pbxproj | sort | uniq -c shows the library target at 15.1 and RNDeviceInfo-RNDeviceInfoPrivacyInfo at 9.0.
  5. Build with Xcode 27 for any iOS 27 destination (simulator or device). The build fails at the project validation step before compiling anything.
React Native Version

0.83.1 (bug present on main, 0.87.1 and 0.83.10)

Affected Platforms

Build - MacOS, Runtime - iOS

Output of npx @react-native-community/cli info
System:
  OS: macOS 27.0
  CPU: Apple Silicon
Binaries:
  Node: 22.x
  pnpm: 10.28.1
  CocoaPods: 1.17.0
IDEs:
  Xcode:
    version: 27.0/27A266a
    path: /usr/bin/xcodebuild
Languages:
  Ruby:
    version: 4.0.6
    path: /opt/homebrew/bin/ruby
iOS:
  hermesEnabled: true
  newArchEnabled: true
Stacktrace or Logs
Pods.xcodeproj: error: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 15.0 to 27.0.x. (in target 'RNDeviceInfo-RNDeviceInfoPrivacyInfo' from project 'Pods')
Pods.xcodeproj: error: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 15.0 to 27.0.x. (in target 'react-native-image-picker-RNImagePickerPrivacyInfo' from project 'Pods')
Pods.xcodeproj: error: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 15.0 to 27.0.x. (in target 'react-native-view-shot-RNViewShotPrivacyInfo' from project 'Pods')
Pods.xcodeproj: error: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 12.4, but the range of supported deployment target versions is 15.0 to 27.0.x. (in target 'RNPermissions-RNPermissionsPrivacyInfo' from project 'Pods')
Pods.xcodeproj: error: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 12.4, but the range of supported deployment target versions is 15.0 to 27.0.x. (in target 'RNSVG-RNSVGFilters' from project 'Pods')
Pods.xcodeproj: error: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 13.4, but the range of supported deployment target versions is 15.0 to 27.0.x. (in target 'RNCAsyncStorage-RNCAsyncStorage_resources' from project 'Pods')
Pods.xcodeproj: error: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 14.0, but the range of supported deployment target versions is 15.0 to 27.0.x. (in target 'RiveRuntime-runtime_ios_privacy' from project 'Pods')
MANDATORY Reproducer

The defect is in packages/react-native/scripts/cocoapods/utils.rb itself (permalink above); the steps above reproduce it on a fresh cli init app with one dependency added and no other changes. I can push a repro repository if the steps are not sufficient.

Screenshots and Videos

No response

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Hướng nghiên cứu

Bắt đầu trong packages/react-native/scripts/cocoapods/utils.rb tại ReactNativePodsUtils.updateOSDeploymentTarget, so sánh quá trình duyệt của nó với turn_off_resource_bundle_react_core. Tái hiện bằng ứng dụng CLI và dependency được liệt kê, sau đó kiểm tra Pods/Pods.xcodeproj/project.pbxproj; hoàn tất khi các deployment target của resource bundle đáp ứng min_ios_version_supported và quá trình validation của Xcode 27 thành công.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
ios, react-native, ruby
Lĩnh vực
build-system, mobile
Loại issue
Lỗi
Độ khó
2/5
Thời gian dự kiến
1-3 giờ
Mức độ hoạt động
Sôi nổi
Độ rõ ràng
Đặc tả rõ ràng
Mức phù hợp với người mới
88/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.