Last active
June 30, 2019 02:59
-
-
Save Rapbong/7cb1c0f33ee47028a7104893134f76eb to your computer and use it in GitHub Desktop.
App module Gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
apply plugin: 'kotlin-kapt' | |
... | |
dependencies { | |
/* Other Gradle settings */ | |
implementation "com.google.dagger:dagger:$dagger2_version" | |
implementation "com.google.dagger:dagger-android:$dagger2_version" | |
implementation "com.google.dagger:dagger-android-support:$dagger2_version" | |
kapt "com.google.dagger:dagger-compiler:$dagger2_version" | |
kapt "com.google.dagger:dagger-android-processor:$dagger2_version" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment