Skip to content

Instantly share code, notes, and snippets.

@malcommac
Created January 22, 2022 22:44
Show Gist options
  • Save malcommac/7f5763b2cc351d277e1807953267f86f to your computer and use it in GitHub Desktop.
Save malcommac/7f5763b2cc351d277e1807953267f86f to your computer and use it in GitHub Desktop.
Show Debug Menu in XCode or TestFlight Builds
private lazy var shouldShowDevMenu: Bool = {
#if DEBUG
return true // XCode
#else
guard let path = Bundle.main.appStoreReceiptURL?.path else {
return false // AppStore
}
return path.contains("sandboxReceipt") // TestFlight
#endif
}()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment