Skip to content

Commit

Permalink
Merge pull request #27 from vestrel00/feature/#10-add-butterknife-dep…
Browse files Browse the repository at this point in the history
…endency

Added butterknife dependency into gradle buildscript. Closes #10
  • Loading branch information
vestrel00 committed Jul 24, 2017
2 parents 78e87be + 3a7e392 commit 3437505
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,13 @@ dependencies {
// There is a better way to declare and structure dependencies.
// However, that is a different topic.
def daggerVersion = '2.11'
def butterKnifeVersion = '8.7.0'

annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion"
annotationProcessor "com.google.dagger:dagger-android-processor:$daggerVersion"
annotationProcessor "com.jakewharton:butterknife-compiler:$butterKnifeVersion"

compile "com.google.dagger:dagger:$daggerVersion"
compile "com.google.dagger:dagger-android:$daggerVersion"
compile "com.jakewharton:butterknife:$butterKnifeVersion"
}
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ buildscript {

dependencies {
classpath "com.android.tools.build:gradle:2.3.1"
classpath "com.jakewharton:butterknife-gradle-plugin:8.7.0"
}
}

Expand Down

0 comments on commit 3437505

Please sign in to comment.