From 68c55f401069cb9b43d438839e5e290c2b77e784 Mon Sep 17 00:00:00 2001 From: Matthew Mathias Date: Fri, 4 Aug 2023 15:44:07 -0700 Subject: [PATCH] Add target check for _timedLoader property --- GoogleSignIn/Sources/GIDSignIn.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GoogleSignIn/Sources/GIDSignIn.m b/GoogleSignIn/Sources/GIDSignIn.m index b1a25af5..c8d6046a 100644 --- a/GoogleSignIn/Sources/GIDSignIn.m +++ b/GoogleSignIn/Sources/GIDSignIn.m @@ -181,8 +181,10 @@ @implementation GIDSignIn { BOOL _restarting; // Keychain manager for GTMAppAuth GTMKeychainStore *_keychainStore; +#if TARGET_OS_IOS && !TARGET_OS_MACCATALYST // The class used to manage presenting the loading screen for fetching app check tokens. GIDTimedLoader *_timedLoader; +#endif // TARGET_OS_IOS && !TARGET_OS_MACCATALYST } #pragma mark - Public methods