Skip to content

Commit

Permalink
reduce appMin sdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
KunMinX committed Aug 22, 2022
1 parent bfe8782 commit 43bc5b1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Jetpack-MusicPlayer 目标是:**一行代码即可接入 音乐播放控制组
1.在 build.gradle 中添加依赖。

```groovy
implementation 'com.kunminx.player:player:4.0.3'
implementation 'com.kunminx.player:player:4.0.4'
```

提示:鉴于 Jcenter 关闭,我们已将仓库迁移至 Maven Central,请自行在根目录 build.gradle 添加 `mavenCentral()`
Expand Down
2 changes: 1 addition & 1 deletion README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ If you are thinking about [**how to choose the right architecture for your proje
1. Add a dependency on the library in build.gradle.

```groovy
implementation 'com.kunminx.player:player:4.0.3'
implementation 'com.kunminx.player:player:4.0.4'
```

Tip: 鉴于 Jcenter 的关闭,我们已将仓库迁移至 Maven Central,请自行在根目录 build.gradle 添加 `mavenCentral()`
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android {
compileSdkVersion appTargetSdk
defaultConfig {
applicationId "com.kunminx.player"
minSdkVersion appMinSdk
minSdkVersion 23
targetSdkVersion appTargetSdk
versionCode appVersionCode
versionName appVersionName
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ apply plugin: 'io.codearte.nexus-staging'
buildscript {
ext {
appTargetSdk = 32
appMinSdk = 23
appVersionCode = 40003
appVersionName = "4.0.3"
appMinSdk = 15
appVersionCode = 40004
appVersionName = "4.0.4"
lifecycleVersion = "2.4.1"
navigationVersion = "2.4.2"
}
Expand Down
2 changes: 1 addition & 1 deletion player/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation "androidx.appcompat:appcompat:1.5.0"
implementation "com.github.KunMinX:MVI-Dispatcher:7.0.3-beta"
implementation "com.github.KunMinX:MVI-Dispatcher:7.0.4-beta"
implementation "com.google.android.exoplayer:exoplayer:2.18.1"
}

0 comments on commit 43bc5b1

Please sign in to comment.