Maybe this question is a duplicate but I can't find an answer.
My company wants to implement 3 different environments:
- Staging: Used when developing in Xcode
- UAT: Used when we push builds to TestFlight both internal and external.
- Prod: Used when the app is on the App Store.
As far as I know:
#if DEBUG
it's not executed when a build is in TestFlight.
Is there a way to know when it is TestFlight or AppStore build?
Thank you