Skip to content

Commit e0bb5fa

Browse files
committed
update support library and Gradle
1 parent 119783d commit e0bb5fa

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

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

33

4+
### v1.4.3
5+
6+
* Update support library and Gradle
7+
48
### v1.4.2
59

610
* `finishAfterTransition` on activities, instead of `finish`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To include it in your project, add this to your module's `build.gradle` file:
1919
```groovy
2020
dependencies {
2121
...
22-
compile 'com.klinkerapps:drag-dismiss-activity:1.4.2'
22+
compile 'com.klinkerapps:drag-dismiss-activity:1.4.3'
2323
}
2424
```
2525

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
buildscript {
1818
repositories {
1919
jcenter()
20+
google()
2021
}
2122
dependencies {
2223
classpath "com.android.tools.build:gradle:${GRADLE_PLUGIN_VERSION}"
@@ -26,6 +27,7 @@ buildscript {
2627
allprojects {
2728
repositories {
2829
jcenter()
30+
google()
2931
maven { url "https://maven.google.com" }
3032
}
3133
}

gradle.properties

Lines changed: 4 additions & 4 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.1
18-
BUILD_TOOLS_VERSION=25.0.2
17+
GRADLE_PLUGIN_VERSION=3.0.0-alpha5
18+
BUILD_TOOLS_VERSION=26.0.1
1919

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

2222
MIN_SDK=15
2323
TARGET_SDK=26
2424
COMPILE_SDK=26
2525

26-
VERSION_NAME=1.4.2
26+
VERSION_NAME=1.4.3
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
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-milestone-1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-milestone-1-all.zip

library/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ android {
4040
consumerProguardFiles 'proguard-rules.pro'
4141
}
4242

43+
testOptions {
44+
unitTests {
45+
includeAndroidResources = true
46+
}
47+
}
48+
4349
resourcePrefix "dragdismiss_"
4450
}
4551

@@ -48,7 +54,7 @@ dependencies {
4854
compile "com.android.support:design:${ANDROID_SUPPORT_VERSION}"
4955

5056
testCompile 'junit:junit:4.12'
51-
testCompile "org.robolectric:robolectric:3.3.2"
57+
testCompile "org.robolectric:robolectric:3.4.2"
5258
testCompile 'org.mockito:mockito-all:1.10.8'
5359
testCompile 'org.powermock:powermock-mockito-release-full:1.6.1'
5460
testCompile 'org.powermock:powermock-module-junit4-rule:1.6.0'

0 commit comments

Comments
 (0)