Skip to content

Commit

Permalink
release v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Doikki committed Jul 2, 2018
1 parent 62052ef commit 475b683
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
21 changes: 12 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,18 @@ allprojects {
}
dependencies {
# required, enough for most devices.
implementation 'com.github.dueeeke.dkplayer:dkplayer-java:2.4.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv7a:2.4.3'
# Other ABIs: optional
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv5:2.4.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-arm64:2.4.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86:2.4.3'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86_64:2.4.3'
# 必选,可兼容市面上绝大部分设备
implementation 'com.github.dueeeke.dkplayer:dkplayer-java:2.5.0'
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv7a:2.5.0'
# 可选,用于兼容一些其他的CPU架构
implementation 'com.github.dueeeke.dkplayer:dkplayer-armv5:2.5.0'
implementation 'com.github.dueeeke.dkplayer:dkplayer-arm64:2.5.0'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86:2.5.0'
implementation 'com.github.dueeeke.dkplayer:dkplayer-x86_64:2.5.0'
# 可选,里面包含StandardVideoController的实现
implementation 'com.github.dueeeke.dkplayer:dkplayer-ui:2.5.0'
}
```
或者将library下载并导入项目中使用
Expand Down
11 changes: 9 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "com.dueeeke.dkplayer"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 23
versionName "2.4.3"
versionCode 24
versionName "2.5.0"

ndk {
//打包时只保留armeabi-v7a so
Expand All @@ -31,6 +31,13 @@ android {
}
}

lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}


buildTypes {
debug {
Expand Down

0 comments on commit 475b683

Please sign in to comment.