Possible Duplicate:
Optimizing Android application before release
How can we lower battery consumption in Android?
I’ve searched a bit, and found :
- Using darker colors
- Using as little cyclic triggers as possible
- Lower network usage (count of connections, timeout of cache, etc..)
- Using less Broadcast receivers
- Distribute application load, when dock is connected
- Using setInexactRepeating for periodic actions
anything else you would recommend to verify ?
This Question and its Answers should give you a pretty good idea of all that can be done – e.g less memory consumption will require less garbage collection and thus less cpu usage etc.