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.
kSecAttrSynchronizable
1 parent e81ea8e commit e3822e6Copy full SHA for e3822e6
FirebaseAuth/CHANGELOG.md
@@ -1,3 +1,8 @@
1
+# Unreleased
2
+- [Fixed] Restore Firebase 10 behavior by querying with the
3
+ `kSecAttrSynchronizable` key when auth state is set to be shared across
4
+ devices. (#13584)
5
+
6
# 11.2.0
7
- [Fixed] Fixed crashes that could occur in Swift continuation blocks running in the Xcode 16
8
betas. (#13480)
FirebaseAuth/Sources/Swift/SystemService/AuthStoredUserManager.swift
@@ -161,6 +161,10 @@ class AuthStoredUserManager {
161
]
162
query[kSecUseDataProtectionKeychain as String] = true
163
164
+ if shareAuthStateAcrossDevices {
165
+ query[kSecAttrSynchronizable as String] = true
166
+ }
167
168
return query
169
}
170
0 commit comments