Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Add App Check support for macOS

Open
#602 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
4/5
Estimated time
3-5 days
Newbie friendliness
52/100
Issue type
Feature
Clarity
Mostly clear
Activity status
Quiet
Tech stack
objective-c

Research direction

Start in GoogleSignIn/Sources/GIDSignIn.m and trace the App Check code guarded by TARGET_OS_IOS && !TARGET_OS_MACCATALYST, including the GIDSignIn.sharedInstance.configure path. Compare the existing platform conditions and determine the macOS-compatible entry point. Done means macOS apps can enable App Check through GIDSignIn.sharedInstance.configure or an equivalent method.

Written by the indexing model from the issue text.

Description

enhancement triage

Is your feature request related to a problem you're having? Please describe.
App Check is currently not supported on macOS. The GIDSignIn.sharedInstance.configure method, which is required to enable App Check, is only available on iOS.

Looking at the source code, App Check related code is wrapped in #if TARGET_OS_IOS && !TARGET_OS_MACCATALYST, which confirms that macOS is intentionally excluded from the current implementation.

Describe the solution you'd like
Please add App Check support for macOS so that GIDSignIn.sharedInstance.configure (or an equivalent method) can be called on macOS as well.

Describe alternatives you've considered
No alternatives have been found. macOS apps are currently forced to run without App Check.

Additional context
Relevant source file: GoogleSignIn/Sources/GIDSignIn.m

#if TARGET_OS_IOS && !TARGET_OS_MACCATALYST
#import <AppCheckCore/GACAppCheckToken.h>
#import "GoogleSignIn/Sources/GIDAppCheck/Implementations/GIDAppCheck.h"
// ...
#endif // TARGET_OS_IOS && !TARGET_OS_MACCATALYST
Dominant language
Objective-C
Stars
751
Forks
282
Avg merge
2d 15h
Merged PRs (30d)
9

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from google/GoogleSignIn-iOS

All issues in google/GoogleSignIn-iOS

Similar issues

More Objective-C issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.