... | ... | @@ -58,3 +58,38 @@ player.setOnAuthMsgListener(new OnAuthMsgListener() { |
|
|
}
|
|
|
});
|
|
|
```
|
|
|
|
|
|
## 8.3 升级到SDK3.7.1及以上版本需要注意的地方
|
|
|
在Project的build.gradle文件中增加maven地址maven {url 'http://nexus-app.bokecc.com/repository/sdk-group/'},配置如下。
|
|
|
```
|
|
|
allprojects {
|
|
|
repositories {
|
|
|
google()
|
|
|
jcenter()
|
|
|
//以下两个必须配置
|
|
|
maven {url 'https://dl.bintray.com/bokecc/maven'}
|
|
|
maven {url 'http://nexus-app.bokecc.com/repository/sdk-group/'}
|
|
|
//使用投屏功能时添加此配置,不使用不需要
|
|
|
maven { url 'http://4thline.org/m2'}
|
|
|
}
|
|
|
}
|
|
|
```
|
|
|
|
|
|
在App的build.gradle的文件中增加依赖implementation 'com.bokecc:commonLib:0.1.9'。
|
|
|
```
|
|
|
implementation 'com.bokecc:commonLib:0.1.9'
|
|
|
```
|
|
|
|
|
|
将implementation 'com.bokecc:http:1.2.0'和implementation 'com.bokecc:drmv6:2.19.0'替换为implementation 'com.bokecc:drm:1.2.0'。
|
|
|
```
|
|
|
implementation 'com.bokecc:drm:1.2.0'
|
|
|
```
|
|
|
|
|
|
混淆规则增加以下配置。
|
|
|
```
|
|
|
-keep class com.tencent.mars.** {
|
|
|
public protected private *;
|
|
|
}
|
|
|
```
|
|
|
|
|
|
|