Skip to content

Commit 96f8ed0

Browse files
authored
Merge pull request #59 from jbarat/master
Unify the way dependencies are versioned.
2 parents 30696f1 + 9ba62e4 commit 96f8ed0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
compile "com.android.support:appcompat-v7:$supportLibVersion"
2626
compile "com.android.support:design:$supportLibVersion"
2727

28-
compile 'com.jakewharton:butterknife:8.5.1'
28+
compile "com.jakewharton:butterknife:$butterKnifeVersion"
2929

3030
compile project(':library')
3131
}

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ ext {
2424
targetSdkVersion = compileSdkVersion
2525

2626
supportLibVersion = '26.1.0'
27+
iconHandlerVersion = 'v2.0.0'
28+
butterKnifeVersion = '8.5.1'
2729
}
2830

2931
task clean(type: Delete) {

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ android {
2222
dependencies {
2323
compile "com.android.support:appcompat-v7:$supportLibVersion"
2424
compile "com.android.support:cardview-v7:$supportLibVersion"
25-
compile 'com.github.jrvansuita:IconHandler:+'
25+
compile "com.github.jrvansuita:IconHandler:$iconHandlerVersion"
2626
}

0 commit comments

Comments
 (0)