Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Memory leak with "libBacktraceRecording.dylib" in React Native ios application

When I'm trying to run a basic react native application I see a lot of libBacktraceRecording.dylib memory request for 544 KB. The same thing with another applications.

enter image description here

Can you help me with this?

Thanks!

like image 948
Oly Avatar asked Dec 17 '15 14:12

Oly


1 Answers

You are running (probably a debug build) with backtrace recording enabled. Disable it in the scheme editor and those allocations will go away.

enter image description here

like image 155
harmless Avatar answered Oct 20 '22 18:10

harmless