Skip to content

Commit

Permalink
Update SDK and support library (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tunous authored Feb 11, 2017
1 parent bcc0135 commit a1c0f7e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ android:
- platform-tools
- tools # https://github.com/travis-ci/docs-travis-ci-com/issues/779
- build-tools-25.0.2
- build-tools-24.0.2
- android-25
- android-24
- extra-android-support
- extra-android-m2repository
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:appcompat-v7:25.1.1'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

Expand Down
14 changes: 7 additions & 7 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
applicationId "me.thanel.swipeactionview.sample"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "0.1"
targetSdkVersion 25
versionCode 2
versionName "0.2"
}
buildTypes {
release {
Expand All @@ -21,8 +21,8 @@ android {

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

compile project(':library')
}

0 comments on commit a1c0f7e

Please sign in to comment.