npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@react-native-auth/google

v1.1.1

Published

Modern Google Authentication for React Native

Downloads

54

Readme

🔐 @react-native-auth/google

Modern Google Authentication for React Native

NPM Version License: MIT Platform: Android

GitHub Issues or Pull Requests GitHub Issues or Pull Requests


📋 Table of Contents


✨ Features

🎯 Modern Authentication

  • One Tap Sign-In (Credential Manager)
  • Account Chooser UI
  • Legacy OAuth Support

⚡ Built with Latest Tech

  • TurboModule (New Architecture)
  • Codegen Type Safety
  • Android Only (for now)

📋 Available Methods

| Method | Description | Use Case | | ---------------- | ---------------------------- | ----------------------------------------- | | oneTap() | One Tap / Credential Manager | Quick sign-in for returning users | | signIn() | Account Chooser UI | First-time sign-in, account selection | | legacySignIn() | Legacy OAuth with scopes | Advanced features (Drive, Calendar, etc.) | | signOut() | Sign out current user | Logout, clear session |


📦 Installation

# Using npm
npm install @react-native-auth/google

# Using yarn
yarn add @react-native-auth/google

⚙️ Setup

📱 Step 1: Enable New Architecture

Add to your android/gradle.properties:

newArchEnabled=true
kotlin.version=2.1.20

☁️ Step 2: Google Cloud Console Setup

🌐 Access Console

Go to Google Cloud Console and create/select your project.

🔌 Enable API

  1. Navigate to APIs & ServicesLibrary
  2. Search for "Google Sign-In API" or "Google Identity"
  3. Click Enable

🔑 Create OAuth 2.0 Credentials

You need TWO client IDs:

a) 📱 Android Client ID

For app verification (SHA-1 fingerprint required)

  1. Go to APIs & ServicesCredentials

  2. Click Create CredentialsOAuth 2.0 Client ID

  3. Select Android

  4. Fill in:

    • Name: Your App (Android)

    • Package name: com.yourapp (from android/app/build.gradle)

    • SHA-1 fingerprint: Get it by running:

      # Debug
      keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
      
      # Release
      keytool -list -v -keystore /path/to/release.keystore -alias your-alias
  5. Click Create

b) 🌐 Web Client ID

For authentication (USE THIS IN YOUR CODE)

  1. Click Create CredentialsOAuth 2.0 Client ID again
  2. Select Web application
  3. Fill in:
    • Name: Your App (Web)
    • Authorized redirect URIs: Leave empty
  4. Click Create
  5. Copy the Web Client IDxxxxx.apps.googleusercontent.com

💡 Pro Tip: The Android Client ID verifies your app. The Web Client ID is used for authentication.


🚀 Usage

📥 Import

import { oneTap, signIn, legacySignIn, signOut } from '@react-native-auth/google';

🎯 One Tap Sign-In

Quick authentication for returning users with saved credentials.

const CLIENT_ID = 'YOUR_WEB_CLIENT_ID.apps.googleusercontent.com';

try {
  const result = await oneTap({ clientId: CLIENT_ID });
  console.log('✅ Signed in:', result.idToken);
  console.log('📧 Email:', result.email);
} catch (error) {
  console.error('❌ Sign-in failed:', error);
}

👤 Sign-In with Account Chooser

Display account picker UI for first-time users or account switching.

const result = await signIn({
  clientId: CLIENT_ID,
});

🔐 Legacy OAuth Sign-In

Advanced authentication with custom OAuth scopes (Drive, Calendar, etc.)

const result = await legacySignIn({
  clientId: CLIENT_ID,
  scopes: [
    'https://www.googleapis.com/auth/drive.readonly',
    'https://www.googleapis.com/auth/calendar.readonly',
  ],
  prompt: 'consent', // Optional: Force consent screen
});

📍 prompt Parameter

Controls the authentication flow behavior:

| Value | Behavior | | ---------------- | -------------------------------------------------- | | undefined | Default behavior - no forced interaction | | 'consent' | Always show consent screen, even for existing app | | 'login' | Always show login screen, force account selection | | 'select_account' | Always show account selection screen | | 'none' | Silent authentication (may fail if no session) |

Example - Force Consent Screen:

const result = await legacySignIn({
  clientId: CLIENT_ID,
  scopes: ['https://www.googleapis.com/auth/calendar'],
  prompt: 'consent', // Useful when updating permissions
});

Example - Force Account Selection:

const result = await legacySignIn({
  clientId: CLIENT_ID,
  prompt: 'select_account', // Always show account picker
});

Example - Force Login:

const result = await legacySignIn({
  clientId: CLIENT_ID,
  prompt: 'login', // Useful for switching accounts
});

🚪 Sign Out

Sign out the current user and clear the session.

try {
  await signOut();
  console.log('✅ Signed out successfully');
} catch (error) {
  console.error('❌ Sign-out failed:', error);
}

📝 API Reference

Types

type GoogleAuthOptions = {
  clientId: string; // Your Web Client ID
  scopes?: string[]; // OAuth scopes (legacySignIn only)
  prompt?: string; // Consent behavior: 'consent', 'login', 'none'
};

type GoogleAuthResult = {
  idToken: string; // JWT ID token
  email?: string; // User email (if available)
};

🛠️ Troubleshooting

❌ "Sign-in failed" or "Invalid client ID"

  • ✅ Verify you're using the Web Client ID, not Android Client ID
  • ✅ Check SHA-1 fingerprint is correctly added for Android Client ID
  • ✅ Ensure Google Sign-In API is enabled in Console

❌ "Credential Manager not available"

  • ✅ Test on Android 9+ (API level 28+)
  • ✅ Ensure Google Play Services is updated
  • ✅ Test on a physical device (emulators may have issues)

📄 License

License: MIT


Made with ❤️ for React Native

Report Bug · Request Feature