@@ -35,9 +35,10 @@ struct FeatureFlagConfiguration: Decodable {
35
35
let siriEnabled : Bool
36
36
let simpleBolusCalculatorEnabled : Bool
37
37
let usePositiveMomentumAndRCForManualBoluses : Bool
38
- let dynamicCarbAbsorptionEnabled : Bool
39
38
let adultChildInsulinModelSelectionEnabled : Bool
40
39
let profileExpirationSettingsViewEnabled : Bool
40
+ let missedMealNotifications : Bool
41
+ let allowAlgorithmExperiments : Bool
41
42
42
43
43
44
fileprivate init ( ) {
@@ -212,14 +213,25 @@ struct FeatureFlagConfiguration: Decodable {
212
213
self . adultChildInsulinModelSelectionEnabled = false
213
214
#endif
214
215
215
- self . dynamicCarbAbsorptionEnabled = true
216
-
217
216
// ProfileExpirationSettingsView is inverse, since the default state is enabled.
218
217
#if PROFILE_EXPIRATION_SETTINGS_VIEW_DISABLED
219
218
self . profileExpirationSettingsViewEnabled = false
220
219
#else
221
220
self . profileExpirationSettingsViewEnabled = true
222
221
#endif
222
+
223
+ // Missed meal notifications compiler flag is inverse, since the default state is enabled.
224
+ #if MISSED_MEAL_NOTIFICATIONS_DISABLED
225
+ self . missedMealNotifications = false
226
+ #else
227
+ self . missedMealNotifications = true
228
+ #endif
229
+
230
+ #if ALLOW_ALGORITHM_EXPERIMENTS
231
+ self . allowAlgorithmExperiments = true
232
+ #else
233
+ self . allowAlgorithmExperiments = false
234
+ #endif
223
235
}
224
236
}
225
237
@@ -251,9 +263,11 @@ extension FeatureFlagConfiguration : CustomDebugStringConvertible {
251
263
" * allowDebugFeatures: \( allowDebugFeatures) " ,
252
264
" * simpleBolusCalculatorEnabled: \( simpleBolusCalculatorEnabled) " ,
253
265
" * usePositiveMomentumAndRCForManualBoluses: \( usePositiveMomentumAndRCForManualBoluses) " ,
254
- " * dynamicCarbAbsorptionEnabled: \( dynamicCarbAbsorptionEnabled) " ,
255
266
" * adultChildInsulinModelSelectionEnabled: \( adultChildInsulinModelSelectionEnabled) " ,
256
- " * profileExpirationSettingsViewEnabled: \( profileExpirationSettingsViewEnabled) "
267
+ " * profileExpirationSettingsViewEnabled: \( profileExpirationSettingsViewEnabled) " ,
268
+ " * missedMealNotifications: \( missedMealNotifications) " ,
269
+ " * allowAlgorithmExperiments: \( allowAlgorithmExperiments) " ,
270
+ " * allowExperimentalFeatures: \( allowExperimentalFeatures) "
257
271
] . joined ( separator: " \n " )
258
272
}
259
273
}
@@ -277,6 +291,20 @@ extension FeatureFlagConfiguration {
277
291
#endif
278
292
}
279
293
294
+ var allowExperimentalFeatures : Bool {
295
+ #if EXPERIMENTAL_FEATURES_ENABLED
296
+ return true
297
+ #elseif EXPERIMENTAL_FEATURES_ENABLED_CONDITIONALLY
298
+ if debugEnabled {
299
+ return true
300
+ } else {
301
+ return UserDefaults . appGroup? . allowExperimentalFeatures ?? false
302
+ }
303
+ #else
304
+ return false
305
+ #endif
306
+ }
307
+
280
308
var allowSimulators : Bool {
281
309
#if SIMULATORS_ENABLED
282
310
return true
0 commit comments