Is there a difference in using @Binds in a abstra...
# squarelibraries
r
Is there a difference in using @Binds in a abstract class vs interface , when it comes to Dagger?
j
No. The information is only used at compile time. There is no runtime overhead or usage of
@Binds
methods.
Also you probably want #dagger as
@Binds
is a Dagger 2 thing (by Google) whereas the Square-owned Dagger was Dagger 1
r
ooh yea, true . Thanks for the information