Skip to content

Commit

Permalink
Version 2.3.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvasilkov committed Apr 4, 2017
1 parent d0807f7 commit 158110d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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+.

Expand Down Expand Up @@ -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
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 25
buildToolsVersion '25.0.1'
buildToolsVersion '25.0.2'

defaultConfig {
minSdkVersion 9
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions library/gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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'

Expand Down

0 comments on commit 158110d

Please sign in to comment.