I've been reading about MVP
and I'd like to ask a few questions :
In my project I use lots of IntentService
s to make some network calls. I am guessing that those services belong to Model
layer of my app. But since they have a reference to context I'm not sure how I have to do it.
Should I just create another class MyService
and in there start the IntentService
? Maybe add all those services in a ServiceModule
using Dagger 2
?
I found a similar question here but there's no answer to it.