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 ?

[1] [2] [3] [4] [5] [6]

link|improve this question

feedback

closed as exact duplicate by Marek Sebera, Heiko Rupp, Sergey Glotov, Ovidiu Latcu, casperOne Feb 8 at 15:12

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
1  
ah, I missed this question when searching. feel free to close as duplicate than. – Marek Sebera Feb 8 at 13:56
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.