Issue when trying to log network calls on real device. #163
-
Hey! 👋 I'm using Pulse on my app with a basic Apollo GraphQL configuration to do the network calls. I'm using the default Do you have an idea of what could be the problem in my configuration? 🤔 Thanks in advance! 🙂 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok I just found what I was doing wrong. 😅 I was calling the |
Beta Was this translation helpful? Give feedback.
Ok I just found what I was doing wrong. 😅 I was calling the
URLSessionProxyDelegate.enableAutomaticRegistration()
method each time I was doing a Network call because I put it in a computed property. Solved by calling the method only on app launch (in theinit()
of the main class of my network layer) 👍