不变违规:requireNativeComponent:在 UIManager 中找不到“RCTVideo”

问题描述 投票:0回答:1

错误: 不变违规:requireNativeComponent:在 UIManager 中找不到“RCTVideo”。 使用react-native-video(最新版本) 反应本机版本 >0.60 React-native cli**(不是 EXPO)** ios

const videoUrl = 'https://www.w3schools.com/html/mov_bbb.mp4';
<Video source={{ uri: videoUrl }} style={vstyles.video} />

const vstyles = StyleSheet.create({
  video: {
    width: '20%',
    height: moderateScale(300),
    marginTop: moderateScale(10),
    borderRadius: moderateScale(8),
  },
});

重新安装 Pod 不起作用

ios react-native cocoapods react-native-video
1个回答
0
投票

转到您的终端并输入以下命令

iOS 版

$   cd ios && pod install && cd ..

这将为 iOS 设备构建所有依赖项,接下来您需要转到

Xcode
并再次构建应用程序。

对于 Anrdoid

您将需要创建一个新的开发版本。

© www.soinside.com 2019 - 2024. All rights reserved.