Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the 'captures' directory in android project?

Recently, in one of my Android Project root, I can see a directory named 'captures'. It contains several *.txt files name similarly - SystemInfo_date_time.txt

enter image description here

The file contains different kinds of information. I'm curious how they are generated, and if there's any way to utilize the information.

Android Studio - 2.2.3 | Gradle - 2.14.1

like image 482
Abu Ruqaiyah Avatar asked Feb 23 '17 12:02

Abu Ruqaiyah


1 Answers

Those files are capture files generated when running the Layout Inspector or the Method Tracing in Android Studio (see here for more information about Layout Inspector and here for Method Tracing)

like image 98
mVck Avatar answered Sep 26 '22 01:09

mVck