Android Question Multiple service module in a project

JakeBullet70

Well-Known Member
Licensed User
Longtime User
Hi all.
I have 4 service modules in a project. (HTTP/Jetty, UDP engine, Timers, Kiosk utils) Is it better to make one service module with everything in it? Or does it really matter?

Thanks
 

thedesolatesoul

Expert
Licensed User
Longtime User
I dont think it matters much.
The main thing is that you are able to keep the functionality cleanly separate and its easier to debug.
Having one service will probably have less overhead for Android having to manage them, but is it really worth it?
 
Upvote 0

anOparator

Active Member
Licensed User
Longtime User
This post saved me lots of 'what if I try using lots of services and then try to put it all in one service' time.
Thanks.
 
Upvote 0
Top