Skip to content

Commit

Permalink
Clean appcompat dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenVinouze committed Apr 13, 2017
1 parent 0aeac39 commit 631bfda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ apply from: '../library.gradle'
apply plugin: 'kotlin-android'

dependencies {
compile 'com.android.support:design:23.4.0'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
Expand Down
6 changes: 4 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ android {
}
}

def appcompat_version = "25.3.1"

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':core')
compile project(':section')
compile project(':pagination')
compile project(':gesture')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile "com.android.support:appcompat-v7:$appcompat_version"
compile "com.android.support:cardview-v7:$appcompat_version"
}

0 comments on commit 631bfda

Please sign in to comment.