None
SQ
Architecting Android apps for emerging markets
['Ashish Bhatia']
ashishb.net
Test for app’s behavior under doze mode using “adbe doze on” Test for battery usage using battery historian Logging & debugging Store and fetch logcat logs in a file using something like xLog to ensure that you have sufficient information behind crashes/ANRs Use Stetho for manual app debugging ANR Use StrictMode to catch and prevent potential causes of ANRs Avoid Inter-process calls (IPC) on the main thread, StrictMode won’t catch the violation, and you would never know what’s happening on the other side of the IPC call which can block the main thread.