Nikolai
Nikolai

Reputation: 266

Several services, Same Android app

I currently maintain an Android application which uses a big fat services handling :

I'd like to split the service into new namely services. Should I? Am I going to slow my app by using too much memory for those services? Is it going to be mess to maintain?

Thx in advance

Upvotes: 0

Views: 78

Answers (1)

X3Btel
X3Btel

Reputation: 1428

If managed properly several services can decrease memmory and CPU usage. If some part of the app needs only File compression- no point for it to use everything else. Also services does not use alot of resources by themselves- its important what you do inside.

Look at Intent Service They can be usefull for your File Compression and Canvas, while normal always running service is usefull for your Bluetooth communication(if its really needed all the time).

Upvotes: 1

Related Questions