mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 00:24:43 +02:00
Merge commit 'aaadcc73674cc8886e363693a7d7c08ac9b4f516' into feature/4260_merge_foss_1_10_2
# Conflicts: # Config/AppVersion.xcconfig # Podfile # Podfile.lock # Riot.xcworkspace/xcshareddata/swiftpm/Package.resolved # Riot/Managers/EncryptionKeyManager/EncryptionKeyManager.swift # Riot/Modules/Application/LegacyAppDelegate.m # Riot/Modules/Authentication/AuthenticationCoordinator.swift # Riot/Modules/Authentication/Legacy/LegacyAuthenticationCoordinator.swift # Riot/Modules/ContextMenu/ActionProviders/RoomActionProvider.swift # Riot/Modules/Home/AllChats/AllChatsViewController.swift # Riot/Modules/Room/RoomInfo/RoomInfoCoordinator.swift # Riot/Modules/Room/RoomInfo/RoomInfoList/RoomInfoListViewController.swift # Riot/Modules/Room/Settings/RoomSettingsViewController.m # fastlane/Fastfile
This commit is contained in:
@@ -324,6 +324,11 @@ extension Analytics {
|
||||
viewRoomTrigger = .unknown
|
||||
capture(event: event)
|
||||
}
|
||||
|
||||
func trackCryptoSDKEnabled() {
|
||||
let event = AnalyticsEvent.CryptoSDKEnabled()
|
||||
capture(event: event)
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - MXAnalyticsDelegate
|
||||
@@ -393,3 +398,14 @@ extension Analytics: MXAnalyticsDelegate {
|
||||
monitoringClient.trackNonFatalIssue(issue, details: details)
|
||||
}
|
||||
}
|
||||
|
||||
/// iOS-specific analytics event triggered when users select the Crypto SDK labs option
|
||||
///
|
||||
/// Due to this event being iOS only, and temporary during gradual rollout of Crypto SDK,
|
||||
/// this event is not added into the shared analytics schema
|
||||
extension AnalyticsEvent {
|
||||
struct CryptoSDKEnabled: AnalyticsEventProtocol {
|
||||
let eventName = "CryptoSDKEnabled"
|
||||
let properties: [String: Any] = [:]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user