diff --git a/README.md b/README.md index 527f0611..e11e8f96 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ easier for developers to integrate it into their apps. Add dependency to your `build.gradle` file: - compile 'com.alexvasilkov:gesture-views:2.2.0' + compile 'com.alexvasilkov:gesture-views:2.3.0' Note: min SDK version for library is 9, but it was tested mainly on 15+. @@ -68,7 +68,7 @@ Note: min SDK version for library is 9, but it was tested mainly on 15+. [mvn-url]: https://maven-badges.herokuapp.com/maven-central/com.alexvasilkov/gesture-views [mvn-img]: https://img.shields.io/maven-central/v/com.alexvasilkov/gesture-views.svg?style=flat-square -[size-url]: http://www.methodscount.com/?lib=com.alexvasilkov%3Agesture-views%3A2.2.0 +[size-url]: http://www.methodscount.com/?lib=com.alexvasilkov%3Agesture-views%3A2.3.0 [size-img]: https://img.shields.io/badge/Methods%20and%20size-960%20%7C%20124%20KB-e91e63.svg?style=flat-square [javadoc-url]: http://javadoc.io/doc/com.alexvasilkov/gesture-views \ No newline at end of file diff --git a/library/build.gradle b/library/build.gradle index f7aabb57..39e6baa8 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' android { compileSdkVersion 25 - buildToolsVersion '25.0.1' + buildToolsVersion '25.0.2' defaultConfig { minSdkVersion 9 @@ -13,9 +13,9 @@ android { } dependencies { - compile 'com.android.support:support-v4:25.0.1' - provided 'com.android.support:recyclerview-v7:25.0.1' - provided 'com.android.support:support-annotations:25.0.1' + compile 'com.android.support:support-v4:25.3.1' + provided 'com.android.support:recyclerview-v7:25.3.1' + provided 'com.android.support:support-annotations:25.3.1' } // New version can be uploaded with './gradlew clean :library:jar :library:uploadArchives' diff --git a/library/gradle.properties b/library/gradle.properties index 7c60a506..3b9c7dfc 100644 --- a/library/gradle.properties +++ b/library/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=2.2.0 -VERSION_CODE=12 +VERSION_NAME=2.3.0 +VERSION_CODE=13 POM_NAME=GestureViews POM_ARTIFACT_ID=gesture-views diff --git a/sample/build.gradle b/sample/build.gradle index dc04604d..a8104065 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -9,13 +9,13 @@ apply plugin: 'com.alexvasilkov.sign' android { compileSdkVersion 25 - buildToolsVersion '25.0.1' + buildToolsVersion '25.0.2' defaultConfig { minSdkVersion 14 targetSdkVersion 25 - versionCode 12 - versionName '2.2.0' + versionCode 13 + versionName '2.3.0' } signingConfigs { @@ -41,9 +41,9 @@ android { dependencies { compile project(':library') - compile 'com.android.support:support-v4:25.0.1' - compile 'com.android.support:appcompat-v7:25.0.1' - compile 'com.android.support:recyclerview-v7:25.0.1' + compile 'com.android.support:support-v4:25.3.1' + compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:recyclerview-v7:25.3.1' compile 'com.github.bumptech.glide:glide:3.7.0'