2

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]

Community
  • 1
  • 1
Marek Sebera
  • 39,650
  • 37
  • 158
  • 244

1 Answers1

3

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.

Community
  • 1
  • 1
Heiko Rupp
  • 30,426
  • 13
  • 82
  • 119