答案是一个响亮的大问题
对
.椰子荚
做
导致本机应用程序出现问题。
在评论完其他大部分豆荚后。我的应用程序在第一次尝试时构建良好,并上传到应用商店。
我的建议。如果不需要的话,不要在椰子荚中添加东西。
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'myApp' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for myApp
pod 'Firebase/Core'
pod 'Firebase/Auth'
# pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
# pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
# pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
# Add yoga.
# https://github.com/facebook/react-native/issues/13046#issuecomment-350523190
# pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
# # Set React to be from node_modules.
# pod 'React', :path => '../node_modules/react-native', :subspecs => [
# 'Core',
# 'DevSupport',
# 'CxxBridge',
# 'RCTNetwork',
# ]
target 'myApp-tvOSTests' do
inherit! :search_paths
# Pods for testing
# pod 'react-native-video', :path => '../node_modules/react-native-video'
# pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
# pod 'SentryReactNative', :path => '../node_modules/react-native-sentry'
# pod 'react-native-in-app-utils', :path => '../node_modules/react-native-in-app-utils'
# pod 'react-native-camera', :path => '../node_modules/react-native-camera'
# pod 'RNIap', :path => '../node_modules/react-native-iap'
# pod 'RNShare', :path => '../node_modules/react-native-share'
# pod 'rn-fetch-blob', :path => '../node_modules/rn-fetch-blob'
end
target 'myApp' do
inherit! :search_paths
# Pods for testing
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "React"
target.remove_from_project
end
end
end
end