From 69ce9c21d433a23ffb9934062b46fa64277ee255 Mon Sep 17 00:00:00 2001 From: Enes Date: Fri, 8 May 2020 15:33:38 -0700 Subject: [PATCH] Update .gitignore (#28789) Summary: When you profile your heap and memory allocations with Memory Profiler, files with *.hprof extension are created in /android folder that has big sizes (up to 600 MB for each). These files may be needed to add to gitignore. ## Changelog [Android] [Added] - Add *.hprof files to gitignore Pull Request resolved: https://github.com/facebook/react-native/pull/28789 Differential Revision: D21432927 Pulled By: hramos fbshipit-source-id: a20f12645de5ca0874c9130094e2f97fe16b2203 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 14b3dddf669aef..73882e2b7b5de5 100644 --- a/.gitignore +++ b/.gitignore @@ -101,3 +101,6 @@ RNTester/Pods/* # Visual studio .vscode .vs + +# Android memory profiler files +*.hprof