Skip to content
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
docs(google-signin): Update docs to include adding GIDClientID to inf…
…o.plist
  • Loading branch information
williamjuan027 authored Jul 13, 2023
commit 50100bc77574b9ce39bafa0fbcf0a77edd9e9e1a
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