Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions LoopSupportKitUI/LoopSupportUI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import LoopKitUI

public final class LoopSupportUI: SupportUI {

public static var supportIdentifier: String = "LoopSupportUI"
public static var pluginIdentifier: String = "LoopSupportUI"

private var analytics = LoopKitAnalytics.shared

Expand Down Expand Up @@ -66,7 +66,6 @@ public final class LoopSupportUI: SupportUI {
// LoopSupport also provides analytics
extension LoopSupportUI: AnalyticsService {


public static var localizedTitle = LocalizedString("LoopKit Analytics", comment: "Title for LoopKit Analytics")

public func recordAnalyticsEvent(_ name: String, withProperties properties: [AnyHashable : Any]?, outOfSession: Bool) {
Expand All @@ -89,6 +88,13 @@ extension LoopSupportUI: AnalyticsService {
}
set(newValue) {}
}

public var stateDelegate: LoopKit.StatefulPluggableDelegate? {
get {
return nil
}
set(newValue) {}
}

public var isOnboarded: Bool {
return true
Expand Down