Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

install Dagger 2 in Android studio

# Add Dagger dependencies
dependencies {
  implementation 'com.google.dagger:dagger:2.x'
  annotationProcessor 'com.google.dagger:dagger-compiler:2.x'
}
# make sure to replace x in 2.x above with the exact version you want to install
# you can find the latest one in the Github link
# https://github.com/google/dagger
Source by github.com #
 
PREVIOUS NEXT
Tagged: #install #Dagger #Android #studio
ADD COMMENT
Topic
Name
5+2 =