因文档安装介绍不全,现记录android
安装教程
android/settings.gradle
追加
include ':react-native-video-cache'
project(':react-native-video-cache').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video-cache/android')
android/build.gradle
追加
allprojects {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
}
android/app/build.gradle
dependencies {
......
implementation project(':react-native-video-cache')
}