diff --git a/README.md b/README.md index 723ab8e..6f55910 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ repositories { } dependencies { - compile 'com.yqritc:recyclerview-flexibledivider:1.2.5' + compile 'com.yqritc:recyclerview-flexibledivider:1.2.6' } ``` diff --git a/build.gradle b/build.gradle index 96577cc..406eb5b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' + classpath 'com.android.tools.build:gradle:1.3.1' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0' // NOTE: Do not place your application dependencies here; they belong diff --git a/gradle.properties b/gradle.properties index 37b4d37..e5b5445 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,11 +1,11 @@ -VERSION_NAME=1.2.5 -VERSION_CODE=9 +VERSION_NAME=1.2.6 +VERSION_CODE=10 GROUP=com.yqritc ARTIFACT_ID=recyclerview-flexibledivider -COMPILE_SDK_VERSION=22 -BUILD_TOOLS_VERSION=22 -TARGET_SDK_VERSION=22 +COMPILE_SDK_VERSION=23 +BUILD_TOOLS_VERSION=23.0.1 +TARGET_SDK_VERSION=23 MIN_SDK_VERSION=9 POM_DESCRIPTION=Android library providing simple way to control divider items of RecyclerView diff --git a/library/build.gradle b/library/build.gradle index 904cb02..fa32f12 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -13,8 +13,8 @@ android { } dependencies { - compile 'com.android.support:appcompat-v7:22.2.0' - compile 'com.android.support:recyclerview-v7:22.2.0' + compile 'com.android.support:appcompat-v7:23.0.1' + compile 'com.android.support:recyclerview-v7:23.0.1' } android.libraryVariants.all { variant -> diff --git a/sample/build.gradle b/sample/build.gradle index cf20182..b3a1169 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -21,7 +21,7 @@ android { dependencies { compile project(':library') -// compile 'com.yqritc:recyclerview-flexibledivider:1.2.5' - compile 'com.android.support:appcompat-v7:22.2.0' - compile 'com.android.support:recyclerview-v7:22.2.0' +// compile 'com.yqritc:recyclerview-flexibledivider:1.2.6' + compile 'com.android.support:appcompat-v7:23.0.1' + compile 'com.android.support:recyclerview-v7:23.0.1' }