对我来说,当我在应用程序中添加一个新的方案/目标(app.staging)并使用 pod install 安装 pod时发生了这个错误。
发生此问题的原因是 pod 并非为所有目标共享。所以,我需要添加新添加的目标(app.staging)内部Podfile。
这是我的 Podfile。
platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
target 'app' do
# Pods for app
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
target 'appTests' do
inherit! :search_paths
# Pods for testing
end
# Pods for staging app
target 'app.staging'
use_native_modules!
end