https://kotlinlang.org logo
#android
Title
# android
s

Sagar Suri

01/22/2020, 4:46 AM
e

erikmedina

01/22/2020, 4:55 PM
@Sagar Suri Hey! Did you manage to setup this in your project? I can't 😞
s

Sagar Suri

01/23/2020, 1:17 AM
Can you tell where did you get stuck or what error you facing?
👍 1
t

Tarik

02/03/2020, 3:24 PM
I could not do the setup either, I added the library in the app module gradle file and then built the project but it did not generate any files
e

erikmedina

02/04/2020, 11:31 AM
@Tarik Give a try to this https://github.com/dvdciri/daggraph. It works for me. The only thing I don’t like is that it can’t show your dependencies with
@Inject
in the constructor (most of my injected classes have the annotation
@Inject
in the constructor). So a workaround could be to declare (provide or bind) these dependencies in Dagger
modules
.
t

Tarik

02/04/2020, 1:20 PM
Thanks @erikmedina I’ll check it out