RN上使用react-native-video视频播放器插件

邵宏达
2023-12-01

一、环境

“react”: “17.0.2”,
“react-native”: “0.65.1”,

二、现象及解决办法

react-native-video安装后报错,是因为与react-native 0.65版本不兼容
解决方案 https://github.com/react-native-video/react-native-video/issues/2468

allprojects {
     repositories {
         .... # Keep the rest
         jcenter() {
             content {
                 includeModule("com.yqritc", "android-scalablevideoview")
             }
         }
     }
 }
 类似资料: