#android
Read more stories on Hashnode
Articles with this tag
I'm writing a blog series on ANR internals, where I'll use ANRs as an excuse to learn more about how various parts of Android work. This first article...
In Statistically Rigorous Android Macrobenchmarks, I laid out a methodology for rigorously comparing the outcome of two Jetpack Macrobenchmark runs....
In this article, I show how Android memory leaks lead to jank, freezes and ANRs more often than they lead to OutOfMemoryError crashes. Navigation...
š In this article, I summarize my findings on Android app launch after a few years of deep dives, with the hope that these guidelines help...
š Hi, this is P-Y, over the last three years I've been steering Square's focus on mobile performance and building a framework for thinking about it...
TL;DR Avoid doing this: new HashMap<String, String>() {{ put("key", value); }}; Leak Trace I was recently looking at the following leak trace from...