Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cpacm committed Jun 8, 2018
1 parent dcb8644 commit e29579d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ I wrote this library just because I want a lightweight slider.

```groovy
dependencies {
implementation 'com.cpacm.simpleslider:library:2.2.0'
implementation 'com.cpacm.simpleslider:library:2.2.1'
}
if module has conflict, use
如果有组件冲突,可以使用以下方法导入
dependencies {
implementation ('com.cpacm.simpleslider:library:2.2.0'){
implementation ('com.cpacm.simpleslider:library:2.2.1'){
exclude module: 'appcompat-v7'
}
}
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.cpacm.simpleslider"
minSdkVersion 15
targetSdkVersion 27
versionCode 8
versionName "2.2.0"
versionCode 9
versionName "2.2.1"
}
buildTypes {
release {
Expand Down
10 changes: 5 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

version = '2.2.0'
version = '2.2.1'

android {
compileSdkVersion 27
Expand All @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdkVersion 11
targetSdkVersion 27
versionCode 8
versionName "2.2.0"
versionCode 9
versionName "2.2.1"
}
buildTypes {
release {
Expand Down Expand Up @@ -104,9 +104,9 @@ bintray {
issueTrackerUrl = 'https://github.com/cpacm/SimpleSlider/issues'
publicDownloadNumbers = true
version {
name = '2.2.0'
name = '2.2.1'
desc = 'simple slider release'
vcsTag = '2.2.0'
vcsTag = '2.2.1'
attributes = ['gradle-plugin': 'com.use.less:com.use.less.gradle:gradle-useless-plugin']
}
}
Expand Down

0 comments on commit e29579d

Please sign in to comment.