Skip to content

docs(google-signin): Update docs to include adding GIDClientID to info.plist #522

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/google-signin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Make sure you've filled out all the required fields in the console for [OAuth co
2. Select `GoogleService-Info.plist` from the file manager.
3. Select the `Runner` target from the dialog that appears.

4. Add the `CFBundleURLTypes` attributes below to the `App_Resources/iOS/Info.plist` file.
4. Add the `CFBundleURLTypes` and `GIDClientID` attributes below to the `App_Resources/iOS/Info.plist` file.

```xml
<!-- Google Sign-in Section -->
Expand All @@ -102,6 +102,9 @@ Make sure you've filled out all the required fields in the console for [OAuth co
</array>
</dict>
</array>
<key>GIDClientID</key>
<!-- Copied from GoogleService-Info.plist key CLIENT_ID -->
<string><749673967192-c24phj29u2otpict36e71ocjo2g5i3hs.apps.googleusercontent.com/string>
<!-- End of the Google Sign-in Section -->
```

Expand Down