... | ... | @@ -91,10 +91,13 @@ implementation 'com.bokecc:drm:1.2.0' |
|
|
public protected private *;
|
|
|
}
|
|
|
```
|
|
|
## 8.4 升级到SDK3.15.0及以上版本需要注意的地方
|
|
|
## 8.4 JCenter停止服务引起的依赖问题
|
|
|
在Project的build.gradle文件中JCenter的仓库将不在使用
|
|
|
```
|
|
|
implementation 'com.bokecc:vod:3.14.0'
|
|
|
替换为:
|
|
|
implementation 'com.bokecc:CCVOD:3.15.0'
|
|
|
//废弃
|
|
|
<!--maven { url 'https://dl.bintray.com/bokecc/maven' } -->
|
|
|
//请使用如下maven地址
|
|
|
maven { url 'http://nexus-app.bokecc.com/repository/sdk-group/' }
|
|
|
```
|
|
|
|
|
|
|