TF-4269 Integrate Sentry into iOS NSE and automate dSYM upload in CI

This commit is contained in:
dab246
2026-04-21 11:51:36 +07:00
parent 4505c50302
commit bab9d4f24c
17 changed files with 412 additions and 18 deletions
@@ -1,4 +1,5 @@
import Foundation
import Sentry
struct KeychainSharingSession: Codable {
let accountId: String
@@ -61,4 +62,12 @@ extension KeychainSharingSession {
}
return nil
}
var sentryUser: User {
let user = User()
user.userId = self.accountId
user.email = self.userName
user.username = self.userName
return user
}
}