Skip to content

Commit 698e4df

Browse files
authored
chore: minor docs polish (#59)
* chore: minor docs polish * chore: minor docs polish
1 parent eda0559 commit 698e4df

13 files changed

+1025
-965
lines changed

.yarn/releases/yarn-4.1.1.cjs

-893
This file was deleted.

.yarn/releases/yarn-4.7.0.cjs

+935
Large diffs are not rendered by default.

.yarnrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.1.1.cjs
3+
yarnPath: .yarn/releases/yarn-4.7.0.cjs

docs/install.mdx

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ There are two ways to consume the package:
88

99
[//]: # '🌟'
1010

11-
### Universal Sign In {#sponsor-only-version}
11+
### Universal Sign In ([premium](https://universal-sign-in.com)) {#sponsor-only-version}
1212

1313
⭐️ **Key Features**:
1414

15-
- **Cross-Platform**: Unified API which works on **Android**, **iOS**, **Web**, and **macOS**.
15+
- **Cross-Platform**: Unified APIs which work on **Android**, **iOS**, **Web**, and **macOS**.
1616

1717
- Android: Built with [Credential Manager library](https://developers.google.com/identity/android-credential-manager)
1818
- Web: Uses [Sign In with Google for Web](https://developers.google.com/identity/gsi/web/guides/features)
1919
- iOS & macOS: Powered by the [Google Sign-In SDK](https://developers.google.com/identity/sign-in/ios/start)
2020

2121
- **Licensed:** see [pricing](https://universal-sign-in.com/#pricing) and [license](https://universal-sign-in.com/license).
22-
- **Trusted**: Over 130k npm package downloads.
23-
- **See the UI**: [screenshots](screenshots) of the features.
22+
- **Trusted**: A total of over 150k npm package downloads.
2423
- **Faster Sign-Ups**: Reduce sign-up and sign-in times on Android by up to 50%, according to [Google](https://developer.android.com/identity/sign-in/legacy-gsi-migration#authentication).
24+
- **See the UI**: [screenshots](screenshots) of the features.
2525

2626
🛡️ **Advanced [security features](/docs/security)**
2727

@@ -31,14 +31,14 @@ There are two ways to consume the package:
3131

3232
📱 **An example app** - to showcase all Universal sign in features
3333

34-
Your purchase enables improvements in the module and upstream SDKs (such as [1](https://github.com/openid/AppAuth-iOS/pull/788), [2](https://github.com/google/GoogleSignIn-iOS/pull/402)).
34+
_Your purchase enables improvements in the module and upstream SDKs (such as [1](https://github.com/openid/AppAuth-iOS/pull/788), [2](https://github.com/google/GoogleSignIn-iOS/pull/402), [3](https://github.com/googlesamples/google-services/issues/426))._
3535

36-
### Public version
36+
### Public version (free)
3737

38-
Available on the public npm registry, this version:
38+
Available on the public npm registry under MIT license, this version:
3939

40+
- Uses the fully functional, but deprecated [legacy Android Google Sign-In](https://web.archive.org/web/20240308064911/https://developers.google.com/identity/sign-in/android/start-integrating).
4041
- Has platform support limited to Android and iOS.
41-
- Uses functional, but deprecated [legacy Android Google Sign-In](https://web.archive.org/web/20240308064911/https://developers.google.com/identity/sign-in/android/start-integrating).
4242
- Contains none of the extra features listed above.
4343

4444
> If you want to migrate from the public version to the Universal version, follow the [migration guide](migrating#migrating-from-original-to-universal-sign-in).

docs/integration-notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
sidebar_position: 51
2+
sidebar_position: 55
33
---
44

55
# Integration notes

docs/jest-mock.md

-17
This file was deleted.

docs/license.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
sidebar_position: 80
3-
sidebar_label: License
43
---
54

6-
The original module is licensed as MIT, the Universal sign in module has [this license](https://universal-sign-in.com/license).
5+
# License
6+
7+
The Original module is licensed as MIT, the Universal sign in module has [this license](https://universal-sign-in.com/license).
78

89
Please do get in touch if you have any questions or concerns about the license!

docs/screenshots.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sidebar_position: 78
33
sidebar_label: Screenshots
44
---
55

6-
# Universal Sign In Screenshots
6+
# Universal sign in screenshots
77

88
:::tip
99
Universal Sign In is only available in the licensed version. [You can get a license here](https://universal-sign-in.com/#pricing) ⭐️.

docs/setting-up/get-config-file.mdx

+10
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,13 @@ Read below on how to set up Google Sign In for your iOS app.
114114
[//]: # '(offline support, web support)'
115115

116116
For some use cases, a Web Client ID is needed (provided to the `configure()` call). To obtain a Web Client ID, go to [Google Cloud Console](https://console.cloud.google.com/apis/credentials?project=_) and find an existing one (it may have been already created by Firebase) or create a new OAuth Client ID of type **Web**.
117+
118+
---
119+
120+
## Summary
121+
122+
At the end of this guide, regardless of whether you use Firebase, when you visit [Google Cloud Console](https://console.cloud.google.com/apis/credentials?project=_), you should have in the "OAuth 2.0 Client IDs" section:
123+
124+
- Android OAuth Client ID(s) with SHA-1 fingerprints
125+
- iOS OAuth Client ID(s) with iOS URL scheme
126+
- Web Client ID

docs/testing.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
sidebar_position: 50
3+
---
4+
5+
# Testing
6+
7+
## Setting up a mock
8+
9+
If you use Jest for testing, you may need to mock the functionality of the native module - this is because the native code cannot run in Node environment.
10+
11+
This library ships with a Jest mock that you can add to the `setupFiles` array in your Jest config.
12+
13+
By default, the mock behaves as if the calls were successful and returns mock user data.
14+
15+
```json title="jest.config.js|ts|mjs|cjs|json"
16+
{
17+
"setupFiles": [
18+
"./node_modules/@react-native-google-signin/google-signin/jest/build/jest/setup.js"
19+
]
20+
}
21+
```
22+
23+
[//]: # '### Writing tests'
24+
[//]: #
25+
[//]: # 'You can use [`@testing-library/react-native`](https://callstack.github.io/react-native-testing-library/) to write tests for React components that use React Native Google Sign In.'

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323
"@mdx-js/react": "^3.1.0",
2424
"clsx": "^2.1.1",
2525
"docusaurus-lunr-search": "^3.6.1",
26-
"prism-react-renderer": "^2.4.0",
26+
"prism-react-renderer": "^2.4.1",
2727
"react": "^18.3.1",
2828
"react-dom": "^18.3.1"
2929
},
3030
"devDependencies": {
3131
"@docusaurus/module-type-aliases": "^3.6.3",
3232
"@docusaurus/tsconfig": "^3.6.3",
3333
"@docusaurus/types": "^3.6.3",
34-
"docusaurus-plugin-typedoc": "^1.0.5",
34+
"docusaurus-plugin-typedoc": "^1.2.3",
3535
"prettier": "^3.3.3",
36-
"typedoc": "^0.27.6",
37-
"typedoc-plugin-markdown": "^4.4.1",
38-
"typescript": "~5.6.3"
36+
"typedoc": "^0.27.9",
37+
"typedoc-plugin-markdown": "^4.4.2",
38+
"typescript": "~5.8.2"
3939
},
4040
"browserslist": {
4141
"production": [
@@ -52,5 +52,5 @@
5252
"engines": {
5353
"node": ">=18.0"
5454
},
55-
"packageManager": "yarn@4.1.1"
55+
"packageManager": "yarn@4.7.0"
5656
}

src/components/HomepageFeatures/index.tsx

+4-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ const FeatureList: FeatureItem[] = [
1414
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
1515
description: (
1616
<>
17-
Supports Android, iOS, Web and MacOS. <br /> Also works with Expo
18-
(requires development client)!
17+
Supports Android, iOS, Web and MacOS. <br /> Also works with Expo!
1918
</>
2019
),
2120
},
@@ -25,7 +24,7 @@ const FeatureList: FeatureItem[] = [
2524
description: (
2625
<>
2726
Thanks to the licensed version, the module is maintained, and comes with
28-
this detailed documentation site.
27+
detailed documentation.
2928
</>
3029
),
3130
},
@@ -35,8 +34,8 @@ const FeatureList: FeatureItem[] = [
3534
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
3635
description: (
3736
<>
38-
Supports the New Architecture (including bridgeless mode), and most of
39-
the features of the native SDKs. Open an issue if something's missing!
37+
Supports the New Architecture, and most of the features of the native
38+
SDKs. Open an issue if something's missing!
4039
</>
4140
),
4241
},

yarn.lock

+31-31
Original file line numberDiff line numberDiff line change
@@ -7480,14 +7480,14 @@ __metadata:
74807480
"@mdx-js/react": "npm:^3.1.0"
74817481
clsx: "npm:^2.1.1"
74827482
docusaurus-lunr-search: "npm:^3.6.1"
7483-
docusaurus-plugin-typedoc: "npm:^1.0.5"
7483+
docusaurus-plugin-typedoc: "npm:^1.2.3"
74847484
prettier: "npm:^3.3.3"
7485-
prism-react-renderer: "npm:^2.4.0"
7485+
prism-react-renderer: "npm:^2.4.1"
74867486
react: "npm:^18.3.1"
74877487
react-dom: "npm:^18.3.1"
7488-
typedoc: "npm:^0.27.6"
7489-
typedoc-plugin-markdown: "npm:^4.4.1"
7490-
typescript: "npm:~5.6.3"
7488+
typedoc: "npm:^0.27.9"
7489+
typedoc-plugin-markdown: "npm:^4.4.2"
7490+
typescript: "npm:~5.8.2"
74917491
languageName: unknown
74927492
linkType: soft
74937493

@@ -7517,12 +7517,12 @@ __metadata:
75177517
languageName: node
75187518
linkType: hard
75197519

7520-
"docusaurus-plugin-typedoc@npm:^1.0.5":
7521-
version: 1.0.5
7522-
resolution: "docusaurus-plugin-typedoc@npm:1.0.5"
7520+
"docusaurus-plugin-typedoc@npm:^1.2.3":
7521+
version: 1.2.3
7522+
resolution: "docusaurus-plugin-typedoc@npm:1.2.3"
75237523
peerDependencies:
7524-
typedoc-plugin-markdown: ">=4.0.0"
7525-
checksum: 10c0/fff201b77862be882a9ac8d1d5e6115fbb3287a94d90999cbb4a3062266bf39c207b47735effb6952fc94dd29261d39b89e36bf39e114d031013903971007df3
7524+
typedoc-plugin-markdown: ">=4.4.0"
7525+
checksum: 10c0/38e490033a65ffaa4f38f84b45a2f76590f953ee151523b2b1ce4d8b84c9b5c26f58da59714f9effda521eb8e3ed33eb2d91c7003929d6ce3efc53479e0c0764
75267526
languageName: node
75277527
linkType: hard
75287528

@@ -12829,15 +12829,15 @@ __metadata:
1282912829
languageName: node
1283012830
linkType: hard
1283112831

12832-
"prism-react-renderer@npm:^2.4.0":
12833-
version: 2.4.0
12834-
resolution: "prism-react-renderer@npm:2.4.0"
12832+
"prism-react-renderer@npm:^2.4.1":
12833+
version: 2.4.1
12834+
resolution: "prism-react-renderer@npm:2.4.1"
1283512835
dependencies:
1283612836
"@types/prismjs": "npm:^1.26.0"
1283712837
clsx: "npm:^2.0.0"
1283812838
peerDependencies:
1283912839
react: ">=16.0.0"
12840-
checksum: 10c0/3d6969b057da0efe39e3e637bf93601cd5757de5919180e8df16daf1d1b8eedc39b70c7f6f28724fba0a01bc857c6b78312ab027f4e913159d1165c5aba235bb
12840+
checksum: 10c0/ebbe8feb975224344bbdd046b3a937d121592dbe4b8f22ba0be31f5af37b9a8219f441138ef6cab1c5b96f2aa6b529015200959f7e5e85b60ca69c81d35edcd4
1284112841
languageName: node
1284212842
linkType: hard
1284312843

@@ -14783,49 +14783,49 @@ __metadata:
1478314783
languageName: node
1478414784
linkType: hard
1478514785

14786-
"typedoc-plugin-markdown@npm:^4.4.1":
14787-
version: 4.4.1
14788-
resolution: "typedoc-plugin-markdown@npm:4.4.1"
14786+
"typedoc-plugin-markdown@npm:^4.4.2":
14787+
version: 4.4.2
14788+
resolution: "typedoc-plugin-markdown@npm:4.4.2"
1478914789
peerDependencies:
1479014790
typedoc: 0.27.x
14791-
checksum: 10c0/54c9a25aed64d07258033c4d060acac15a618ee0494cbb2bc70fd10d03c82b3434715b6db01fbeb09d672cff736340666d70da1be83188e3a994048a0a0c6b65
14791+
checksum: 10c0/93112f0f06f1c0bc7eec1ba7f9034b88a6817a92ec41e491e8ac73c23a5fbda84df537d136395295737499fc1d5afa94d1500a1921b1a967248dc5d3054fc9d6
1479214792
languageName: node
1479314793
linkType: hard
1479414794

14795-
"typedoc@npm:^0.27.6":
14796-
version: 0.27.6
14797-
resolution: "typedoc@npm:0.27.6"
14795+
"typedoc@npm:^0.27.9":
14796+
version: 0.27.9
14797+
resolution: "typedoc@npm:0.27.9"
1479814798
dependencies:
1479914799
"@gerrit0/mini-shiki": "npm:^1.24.0"
1480014800
lunr: "npm:^2.3.9"
1480114801
markdown-it: "npm:^14.1.0"
1480214802
minimatch: "npm:^9.0.5"
1480314803
yaml: "npm:^2.6.1"
1480414804
peerDependencies:
14805-
typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x
14805+
typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x
1480614806
bin:
1480714807
typedoc: bin/typedoc
14808-
checksum: 10c0/74af856fc2b9ca151567db8e08737a6ab8b29efb611414510eb833f80723245bc6ade00f2be7a410e335833cfd5e3deb1ae1ecfdb4da3a13c65faedd1f1805b0
14808+
checksum: 10c0/999668d9d23e1824b762e2c411e2c0860d0ce4a2e61f23a2c31d36a1d6337a763553bc75205aee25ce34659e9315315c720694e9eccd7e7e4755873fdfec1192
1480914809
languageName: node
1481014810
linkType: hard
1481114811

14812-
"typescript@npm:~5.6.3":
14813-
version: 5.6.3
14814-
resolution: "typescript@npm:5.6.3"
14812+
"typescript@npm:~5.8.2":
14813+
version: 5.8.2
14814+
resolution: "typescript@npm:5.8.2"
1481514815
bin:
1481614816
tsc: bin/tsc
1481714817
tsserver: bin/tsserver
14818-
checksum: 10c0/44f61d3fb15c35359bc60399cb8127c30bae554cd555b8e2b46d68fa79d680354b83320ad419ff1b81a0bdf324197b29affe6cc28988cd6a74d4ac60c94f9799
14818+
checksum: 10c0/5c4f6fbf1c6389b6928fe7b8fcd5dc73bb2d58cd4e3883f1d774ed5bd83b151cbac6b7ecf11723de56d4676daeba8713894b1e9af56174f2f9780ae7848ec3c6
1481914819
languageName: node
1482014820
linkType: hard
1482114821

14822-
"typescript@patch:typescript@npm%3A~5.6.3#optional!builtin<compat/typescript>":
14823-
version: 5.6.3
14824-
resolution: "typescript@patch:typescript@npm%3A5.6.3#optional!builtin<compat/typescript>::version=5.6.3&hash=5adc0c"
14822+
"typescript@patch:typescript@npm%3A~5.8.2#optional!builtin<compat/typescript>":
14823+
version: 5.8.2
14824+
resolution: "typescript@patch:typescript@npm%3A5.8.2#optional!builtin<compat/typescript>::version=5.8.2&hash=5786d5"
1482514825
bin:
1482614826
tsc: bin/tsc
1482714827
tsserver: bin/tsserver
14828-
checksum: 10c0/ac8307bb06bbfd08ae7137da740769b7d8c3ee5943188743bb622c621f8ad61d244767480f90fbd840277fbf152d8932aa20c33f867dea1bb5e79b187ca1a92f
14828+
checksum: 10c0/5448a08e595cc558ab321e49d4cac64fb43d1fa106584f6ff9a8d8e592111b373a995a1d5c7f3046211c8a37201eb6d0f1566f15cdb7a62a5e3be01d087848e2
1482914829
languageName: node
1483014830
linkType: hard
1483114831

0 commit comments

Comments
 (0)