1

In order to enable Firebase Analytics Debug Mode we need to add this flag

-FIRAnalyticsDebugEnabled

to Xcode as described in the official documentation.

enter image description here

However...

... this only works when we launch the app from Xcode. When we deploy the app via BuddyBuild the argument is lost.

My question

How can I enable Firebase Analytics Debug Mode when the app is deployed via BuddyBuild?

ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56
Luca Angeletti
  • 58,465
  • 13
  • 121
  • 148

2 Answers2

0

This is designed so that you can't ship the Debug Mode with the app because it will spam the system log and send debug traffic.

adbitx
  • 2,019
  • 8
  • 13
0

That's indeed not possible with buddybuild. Even with a shared scheme, the arguments passed on launch are set by iOS once you run the app from a device.

Unfortunately, there doesn't seem to be a way to decrease the refresh rate, which I assume was your goal.

Romain Pouclet
  • 864
  • 2
  • 8
  • 17