尝试在iPhone模拟器中运行react native时得到此警告

k5ifujac  于 2023-04-12  发布在  React
关注(0)|答案(1)|浏览(164)

//在Xcode中// 'value'不可用:在iOS 12.0中引入
//在终端//警告:C [-Wstrict-prototypes] static NSUInteger RCTDeviceTotalMemory()的所有版本都不赞成使用没有原型的函数声明
该应用程序在Android中运行良好,但无法在iOS中运行
我尝试了下面提到的方法
https://github.com/facebook/react-native/issues/34106Flutter error: xcodebuild: WARNING: Using the first of multiple matching destinationshttps://github.com/facebook/react-native/issues/36293

x8diyxa7

x8diyxa71#

将以下内容添加到您的Podfile:

installer.pods_project.targets.each do |target|
  target.build_configurations.each do |config|
    config.build_settings['SWIFT_VERSION'] = '5.0'
    config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.4'
  end
end

相关问题