From e692fcc7701e479287748518a5e9ec8d65c97cce Mon Sep 17 00:00:00 2001 From: PixelyIon Date: Mon, 25 Apr 2022 20:59:53 +0530 Subject: [PATCH] Add `.trace` files to `.gitignore` We want to ignore all `.trace` files as they correspond to Android Studio profiler's native call traces which may be stored in the Skyline directory for easy access. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 2c43c29f..d5930211 100644 --- a/.gitignore +++ b/.gitignore @@ -98,3 +98,6 @@ libVkLayer_adreno.so # Skyline logs *.sklog + +# Android Studio Profiler Traces +*.trace