From 8df814333c0b3e328f6b7d1b64395cf3bbdc126c Mon Sep 17 00:00:00 2001 From: Vojtech Novak Date: Thu, 23 May 2024 15:35:05 +0200 Subject: [PATCH] docs: new arch support is public --- docs/install.mdx | 5 +---- docs/original.md | 6 +----- docusaurus.config.ts | 2 +- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/docs/install.mdx b/docs/install.mdx index beb3272..613c89a 100644 --- a/docs/install.mdx +++ b/docs/install.mdx @@ -22,10 +22,7 @@ Your sponsorship enables continued maintenance and development of the module. Th ### Public Version -Available on the public npm registry, this version does not include the features, updates and bugfixes found in the sponsor-only version. - -Please note that this documentation site covers the sponsor-only version. If you're using the public version, please refer to this [readme](https://github.com/react-native-google-signin/google-signin/blob/master/README.md#project-setup-and-initialization). - +Available on the public npm registry, this version does not include One-tap sign-in (= it uses the deprecated Google Sign-In for Android) and Web support found in the sponsor-only version. ## Accessing the private package for sponsors diff --git a/docs/original.md b/docs/original.md index 626a532..1c4f27a 100644 --- a/docs/original.md +++ b/docs/original.md @@ -6,10 +6,6 @@ sidebar_position: 40 This module exposes the [Google Sign-In for Android (legacy)](https://web.archive.org/web/20240308064911/https://developers.google.com/identity/sign-in/android/start-integrating) and [Google Sign-In for iOS](https://developers.google.com/identity/sign-in/ios/start) SDKs. -:::info -Please note this documentation is for the latest version of the module which is [only available to sponsors ❤️](install). If you're not a sponsor, read the [docs here](https://github.com/react-native-google-signin/google-signin). -::: - ```ts import { GoogleSignin, @@ -22,7 +18,7 @@ import { signature: (`options`: [`ConfigureParams`](api#configureparams)) => `void` -It is mandatory to call this method before attempting to call `signIn()` and `signInSilently()`. This method is sync meaning you can call `signIn` / `signInSilently` right after it. In typical scenarios, `configure` needs to be called only once, after your app starts. In the native layer, this is a synchronous call. All parameters are optional. +It is mandatory to call this method before attempting to call `signIn()` and `signInSilently()`. This method is sync meaning you can call `signIn` / `signInSilently` right after it. In typical scenarios, `configure` needs to be called only once, after your app starts. All parameters are optional. Example usage with default options: you'll get user email and basic profile info. diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 9f5d248..e9fee14 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -100,7 +100,7 @@ const config: Config = { announcementBar: { id: 'announcementBar', content: - 'Bridgeless mode support is now available to sponsors!', + 'Bridgeless mode support is now publicly available!', isCloseable: true, }, image: "img/docusaurus-social-card.jpg",