我通过cocoapods将一个外部框架添加到我的iOS应用程序中.如何从项目中删除该库?
我收到以下错误:
ld:警告:找不到选项'-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'的目录
如何在不删除框架搜索路径的情况下解决此问题?我需要AdMob框架的框架搜索路径.
当我尝试编译库文件夹时找不到。通过npm和xcode同时发生。
我用0.60.0 rn初始化了一个新项目,添加了Podfile和Deps。我也通过react-native.config.js添加了Firebase的解决方法
我试图解决的是:
Podfile:
platform :ios, '9.0'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
target 'pasioapp' do
# Pods for pasioapp
pod 'React', :path => '../node_modules/react-native/'
pod 'React-Core', :path => '../node_modules/react-native/React'
pod 'React-DevSupport', :path => '../node_modules/react-native/React'
pod 'React-fishhook', :path => '../node_modules/react-native/Libraries/fishhook'
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
pod 'React-RCTNetwork', :path => …Run Code Online (Sandbox Code Playgroud)