GoogleSignIn-iOS icon indicating copy to clipboard operation
GoogleSignIn-iOS copied to clipboard

watchOS support

Open importRyan opened this issue 11 months ago • 0 comments

Please add explicit watchOS support. While we sync auth state with iOS and macOS devices, we still need a fallback when iCloud Keychain is unavailable.

This SDK has guards such as:

@available(iOS 13.0, macOS 10.15, *)
private extension Image {
  static var signInButtonImage: Image {
   ...
#if os(iOS) || targetEnvironment(macCatalyst)
   ...
#elseif os(macOS)
   ...
#else
      fatalError("Unrecognized platform for SwiftUI sign in button image")
#endif

importRyan avatar Feb 20 '25 19:02 importRyan