From e29579d707faf84a50ae012aae5e2df4cebc6060 Mon Sep 17 00:00:00 2001 From: cpacm <348515494@qq.com> Date: Fri, 8 Jun 2018 10:02:46 +0800 Subject: [PATCH] update readme --- .idea/modules.xml | 1 + README.md | 4 ++-- app/build.gradle | 4 ++-- library/build.gradle | 10 +++++----- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.idea/modules.xml b/.idea/modules.xml index 4422a7c..e973f90 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,6 +2,7 @@ + diff --git a/README.md b/README.md index 9004f13..7c73a59 100644 --- a/README.md +++ b/README.md @@ -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' } } diff --git a/app/build.gradle b/app/build.gradle index 52d466f..65d69c9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 { diff --git a/library/build.gradle b/library/build.gradle index 668feea..62bbf69 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -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 @@ -12,8 +12,8 @@ android { defaultConfig { minSdkVersion 11 targetSdkVersion 27 - versionCode 8 - versionName "2.2.0" + versionCode 9 + versionName "2.2.1" } buildTypes { release { @@ -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'] } }