Ios 模块';BrightcovePlayerSDK&x27;升级到0.63后未找到

Ios 模块';BrightcovePlayerSDK&x27;升级到0.63后未找到,ios,xcode,react-native,react-native-ios,Ios,Xcode,React Native,React Native Ios,我刚刚升级到React Native 0.63,由于以下错误,无法再构建我的应用程序 未找到模块“BrightcovePlayerSDK” 我试着在我的pod文件中添加它作为一个自定义pod,但这不起作用。相反,我按照这里的说明手动安装。这给了我一个错误 BCOVOfflineVideoManager'的@interface不可见,声明选择器“requestVideoDownload:parameters:completion:” 我已经检查了框架搜索路径是否正确,但我不确定这个错误的含义 我刚

我刚刚升级到React Native 0.63,由于以下错误,无法再构建我的应用程序

未找到模块“BrightcovePlayerSDK”

我试着在我的pod文件中添加它作为一个自定义pod,但这不起作用。相反,我按照这里的说明手动安装。这给了我一个错误

BCOVOfflineVideoManager'的@interface不可见,声明选择器“requestVideoDownload:parameters:completion:”

我已经检查了框架搜索路径是否正确,但我不确定这个错误的含义

我刚刚升级到Xcode 12.5,下面是我的播客文件:

require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '10.0'

target 'ProjectcNameApp' do
  config = use_native_modules!

  use_react_native!(:path => config["reactNativePath"])

  target 'ProjectcNameAppTests' do
    inherit! :complete
    # Pods for testing
  end

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable these next few lines.
  # use_flipper!
  # post_install do |installer|
  #   flipper_post_install(installer)
  # end
end```