You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to see an example of adding a composable module to another package which includes an interface. The idea is that I'd like to separate my modules into logical groups, so my "UtilitiesModule" would set up @provides for utilities related stuff. ApiModule for api related stuff, etc... but then It'd all compose itself into the main application module.
com.frankdu.cool.things.Thingy could not be bound with key com.frankdu.cool.things.Thingy required by com.frankdu.cool.activity.SplashActivity for com.frankdu.cool.activity.ActivityScopeModule
Am I going about this the wrong way?
The text was updated successfully, but these errors were encountered:
@pselden I commented on your commit. It is how I set up the composable modules. I am inclined not to add such example to this simple tutorial, because it could complicated things too quickly for beginners. Please let me know if it works.
I'd like to see an example of adding a composable module to another package which includes an interface. The idea is that I'd like to separate my modules into logical groups, so my "UtilitiesModule" would set up @provides for utilities related stuff. ApiModule for api related stuff, etc... but then It'd all compose itself into the main application module.
I'm trying to get it work here: https://github.com/pselden/android-gradle-dagger-tutorial/tree/add-composable-module
But I'm seeing this error:
com.frankdu.cool.things.Thingy could not be bound with key com.frankdu.cool.things.Thingy required by com.frankdu.cool.activity.SplashActivity for com.frankdu.cool.activity.ActivityScopeModule
Am I going about this the wrong way?
The text was updated successfully, but these errors were encountered: