我有一个pod文件,比如:
platform :ios, '9.0'
target 'Project' do
pod 'AppAuth', '>= 0.94'
pod 'RNAWSCognito', :path => '../node_modules/amazon-cognito-identity-js'
pod 'react-native-sqlite-storage', :path => '../node_modules/react-native-sqlite-storage'
end我做了pod install,但一些pod是直接安装到我的Pods文件夹中的Target Support File文件夹中。

因此,当我尝试使用这些pod时,它给出了错误:


发布于 2019-04-26 17:34:51
试试这个:pod install --project-directory=/path/to/root/with/Podfile
https://stackoverflow.com/questions/55864172
复制相似问题