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.
1 parent bee96cd commit d82dec2Copy full SHA for d82dec2
ShareClient/ShareClientManager.swift
@@ -10,6 +10,7 @@ import HealthKit
10
11
12
public class ShareClientManager: CGMManager {
13
+
14
public static var managerIdentifier = "DexShareClient"
15
16
public init() {
@@ -119,3 +120,15 @@ public class ShareClientManager: CGMManager {
119
120
].joined(separator: "\n")
121
}
122
123
124
+// MARK: - DeviceAlertResponder implementation
125
+extension ShareClientManager {
126
+ public func acknowledgeAlert(alertIdentifier: DeviceAlert.AlertIdentifier) { }
127
+}
128
129
+// MARK: - DeviceAlertSoundVendor implementation
130
131
+ public func getSoundBaseURL() -> URL? { return nil }
132
+ public func getSounds() -> [DeviceAlert.Sound] { return [] }
133
134
0 commit comments