uni-video.md 833 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
## uni-video

### 本地依赖库

|名称                   |
|:--                    |
|uni-video-release.aar  |
|ijkplayer.aar          |
|videoplayer.aar        |

将本地依赖库复制到app项目的libs下。

### 线上依赖库
|名称                                   |
|:--								    |
|com.github.bumptech.glide:glide:4.9.0  |
|androidx.annotation:annotation:1.1.0	|
|androidx.core:core:1.1.0		        |

将线上依赖库添加到app项目的build.gradle下。

### 组件注册

将以下内容添加到主模块的build.gradle,详见[根据configjson配置应用](../../use/android.md#根据configjson配置应用)

```groovy
defaultConfig {
    buildConfigField "String", "UTSRegisterComponents", "\"[{\\\"name\\\":\\\"video\\\",\\\"class\\\":\\\"uts.sdk.modules.DCloudUniVideo.VideoComponent\\\"}]\""
}
```