We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
false
1 parent 1e86e21 commit 1d1f3a2Copy full SHA for 1d1f3a2
Experiments/Experiments/DefaultFeatureFlagService.swift
@@ -41,6 +41,14 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
41
return buildConfig == .localDeveloper || buildConfig == .alpha
42
case .storeCreationMVP:
43
44
+ case .performanceMonitoring,
45
+ .performanceMonitoringCoreData,
46
+ .performanceMonitoringFileIO,
47
+ .performanceMonitoringNetworking,
48
+ .performanceMonitoringViewController,
49
+ .performanceMonitoringUserInteraction:
50
+ // Disabled by default to avoid costs spikes, unless in development or internal builds.
51
+ return buildConfig != .appStore
52
default:
53
return true
54
}
0 commit comments