Add DEBUG and ADHOC flags
Closed this issue · 1 comments
artemnovichkov commented
Sometimes it's needed to add logic for all debug schemes, for instance:
#if DEBUG || ADHOC
let fingerTipWindow = MBFingerTipWindow(frame: UIScreen.main.bounds)
fingerTipWindow.alwaysShowTouches = UserDefaults.standard.isFingertipsEnabled
window = fingerTipWindow
Deboogger.configure(with: MeasurementPlugin(), HeightPlugin(), WeightPlugin(), FingertipsPlugin())
#else
window = UIWindow(frame: UIScreen.main.bounds)
#endif
I would like to add common flags for those scheme types.
artemnovichkov commented
Added