Skip to content

Commit fe56f2c

Browse files
committed
uddate the support libraries
1 parent f78aa02 commit fe56f2c

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### v1.4.1
4+
5+
* Update dependencies
6+
* Support library now has vastly improved nested scrolling (v26.0.0)
7+
38
### v1.4.0
49

510
* Create a `DragDismissDelegate` and `DragDismissRecyclerViewDelegate` to handle the drag-dismiss functionality, for those that don't want to extend the `DragDismissActivity` and `DragDismissRecyclerViewActivity`.

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ buildscript {
2626
allprojects {
2727
repositories {
2828
jcenter()
29+
maven { url "https://maven.google.com" }
2930
}
3031
}
3132

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
# limitations under the License.
1515
#
1616

17-
GRADLE_PLUGIN_VERSION=2.3.0
17+
GRADLE_PLUGIN_VERSION=2.3.1
1818
BUILD_TOOLS_VERSION=25.0.2
1919

20-
ANDROID_SUPPORT_VERSION=25.2.0
20+
ANDROID_SUPPORT_VERSION=26.0.0-beta2
2121

2222
MIN_SDK=15
23-
TARGET_SDK=25
24-
COMPILE_SDK=25
23+
TARGET_SDK=26
24+
COMPILE_SDK=26
2525

26-
VERSION_NAME=1.4.0
26+
VERSION_NAME=1.4.1
2727
VERSION_CODE=1
2828
GROUP=com.klinkerapps
2929

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ distributionBase=GRADLE_USER_HOME
1919
distributionPath=wrapper/dists
2020
zipStoreBase=GRADLE_USER_HOME
2121
zipStorePath=wrapper/dists
22-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-all.zip
22+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip

library/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ dependencies {
4848
compile "com.android.support:design:${ANDROID_SUPPORT_VERSION}"
4949

5050
testCompile 'junit:junit:4.12'
51-
testCompile "org.robolectric:robolectric:3.2.2"
52-
testCompile 'org.mockito:mockito-all:1.9.5'
51+
testCompile "org.robolectric:robolectric:3.3.2"
52+
testCompile 'org.mockito:mockito-all:1.10.8'
5353
testCompile 'org.powermock:powermock-mockito-release-full:1.6.1'
5454
testCompile 'org.powermock:powermock-module-junit4-rule:1.6.0'
55-
testCompile 'org.powermock:powermock-api-mockito:1.6.0'
55+
testCompile 'org.powermock:powermock-api-mockito:1.6.1'
5656
testCompile 'org.powermock:powermock-classloading-xstream:1.6.0'
5757
testCompile 'org.apache.maven:maven-ant-tasks:2.1.3'
5858
}

0 commit comments

Comments
 (0)