Skip to content

Commit a1c0f7e

Browse files
authored
Update SDK and support library (#2)
1 parent bcc0135 commit a1c0f7e

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ android:
66
- platform-tools
77
- tools # https://github.com/travis-ci/docs-travis-ci-com/issues/779
88
- build-tools-25.0.2
9-
- build-tools-24.0.2
109
- android-25
11-
- android-24
1210
- extra-android-support
1311
- extra-android-m2repository

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
}
2020

2121
dependencies {
22-
compile 'com.android.support:appcompat-v7:25.1.0'
22+
compile 'com.android.support:appcompat-v7:25.1.1'
2323
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2424
}
2525

sample/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 24
5-
buildToolsVersion "24.0.2"
4+
compileSdkVersion 25
5+
buildToolsVersion "25.0.2"
66

77
defaultConfig {
88
applicationId "me.thanel.swipeactionview.sample"
99
minSdkVersion 16
10-
targetSdkVersion 24
11-
versionCode 1
12-
versionName "0.1"
10+
targetSdkVersion 25
11+
versionCode 2
12+
versionName "0.2"
1313
}
1414
buildTypes {
1515
release {
@@ -21,8 +21,8 @@ android {
2121

2222
dependencies {
2323
compile fileTree(include: ['*.jar'], dir: 'libs')
24-
compile 'com.android.support:appcompat-v7:24.2.1'
25-
compile 'com.android.support:cardview-v7:24.2.1'
24+
compile 'com.android.support:appcompat-v7:25.1.1'
25+
compile 'com.android.support:cardview-v7:25.1.1'
2626

2727
compile project(':library')
2828
}

0 commit comments

Comments
 (0)