Skip to content

Commit

Permalink
uddate the support libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
klinker24 committed Jun 12, 2017
1 parent f78aa02 commit fe56f2c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### v1.4.1

* Update dependencies
* Support library now has vastly improved nested scrolling (v26.0.0)

### v1.4.0

* Create a `DragDismissDelegate` and `DragDismissRecyclerViewDelegate` to handle the drag-dismiss functionality, for those that don't want to extend the `DragDismissActivity` and `DragDismissRecyclerViewActivity`.
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ buildscript {
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}

Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
# limitations under the License.
#

GRADLE_PLUGIN_VERSION=2.3.0
GRADLE_PLUGIN_VERSION=2.3.1
BUILD_TOOLS_VERSION=25.0.2

ANDROID_SUPPORT_VERSION=25.2.0
ANDROID_SUPPORT_VERSION=26.0.0-beta2

MIN_SDK=15
TARGET_SDK=25
COMPILE_SDK=25
TARGET_SDK=26
COMPILE_SDK=26

VERSION_NAME=1.4.0
VERSION_NAME=1.4.1
VERSION_CODE=1
GROUP=com.klinkerapps

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ dependencies {
compile "com.android.support:design:${ANDROID_SUPPORT_VERSION}"

testCompile 'junit:junit:4.12'
testCompile "org.robolectric:robolectric:3.2.2"
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile "org.robolectric:robolectric:3.3.2"
testCompile 'org.mockito:mockito-all:1.10.8'
testCompile 'org.powermock:powermock-mockito-release-full:1.6.1'
testCompile 'org.powermock:powermock-module-junit4-rule:1.6.0'
testCompile 'org.powermock:powermock-api-mockito:1.6.0'
testCompile 'org.powermock:powermock-api-mockito:1.6.1'
testCompile 'org.powermock:powermock-classloading-xstream:1.6.0'
testCompile 'org.apache.maven:maven-ant-tasks:2.1.3'
}
Expand Down

0 comments on commit fe56f2c

Please sign in to comment.