Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio profiler: Selected region does not have full tracking

When profiling memory with Android Studio 4.1, I get "Selected region does not have full tracking" as a warning. How can I turn on full tracking?

like image 455
niklassaers Avatar asked Jun 22 '20 09:06

niklassaers


1 Answers

You can change the allocation tracking from the default "Sampled" to "Full" by selecting "Full" from the allocation tracking dropdown.

Full allocation tracking can have a significant performance impact on your application if the application is making 1000's of allocations per second.

like image 95
Joshua Gilpatrick Avatar answered Nov 15 '22 01:11

Joshua Gilpatrick