Do not say nonsense, directly on the basic principle:
1. Load the data or initialize the module only when needed. (with the pre-loading experience optimized directly, you need to do the balance yourself)
2. Before the network request, first determine the network status, avoid frequent retries and so on
3. All sensor event monitoring, must be timely opening and timely cancellation, such as accelerometer, gyroscope, GPS.
4. Do not misuse the Android Service,app is not operating but secretly power consumption, which is taboo.
5. Try not to register the global Listener in the manifest (use it again).
6. There is a heartbeat, polling mechanism, we must carefully consider your strategy. On Android, do not use your own timer, but the system alarm Manger. Timers remember to close in time.
7. Stop the system from sleeping and wake up frequently, and try not to do this.
The power-saving principle in the Wireless app development process