Oly
Oly

Reputation: 123

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!

Upvotes: 6

Views: 1661

Answers (1)

harmless
harmless

Reputation: 316

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

Upvotes: 17

Related Questions