我在理解此标题搜索路径问题时遇到很多麻烦。因此,最初的问题是我将这个包添加到我的React Native项目中:https://github.com/manse/react-native-brightcove-player
据我所知,我已经按照安装说明进行操作,但是当我尝试为iOS进行构建时,出现错误:
react-native-brightcove-player.xcodeproj / BrightcovePlayerManager.h中的'React/RCTViewManager.h' file not found
:
#import <React/RCTViewManager.h>
@interface BrightcovePlayerManager : RCTViewManager
@end
因此,我读到我需要为此项目编辑“标题搜索路径”(aka react-native-brightcove-player.xcodeproj)。
来源:
https://docs.expo.io/versions/latest/expokit/expokit/#changing-native-dependencies
我尝试将$(SRCROOT)/ Pods / Headers / Public和{the-actual-path-to-my-ios-project} / Pods / Headers / Public一起添加,但是我仍然在构建时遇到相同的错误。有什么我想念的吗?