You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement UseUserAccessGroup for Firebase Auth C++ SDK
This commit introduces the `UseUserAccessGroup` method to the Firebase
Authentication C++ SDK.
This method allows developers to specify a user access group for iCloud
keychain access on iOS. It calls the underlying Objective-C method
`[FIRAuth useUserAccessGroup:error:]`.
On other platforms (Desktop, Android), this method is a no-op and returns
`kAuthErrorNone` as the feature is iOS-specific.
Key changes:
- Added `UseUserAccessGroup` declaration to `firebase::auth::Auth` in
`auth/src/include/firebase/auth.h` with Doxygen comments.
- Implemented the iOS-specific logic in `auth/src/ios/auth_ios.mm`,
including error handling and string conversion.
- Added a stub implementation in `auth/src/desktop/auth_desktop.cc` for
non-iOS platforms.
0 commit comments