React Native Google Sign In

React Native Wrapper for Latest Google Sign-In OAuth SDK / API
Alternatives To React Native Google Sign In
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Cpprestsdk7,56814510a day ago25January 01, 1900831otherC++
The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
Octokit.js6,40326315a day ago79July 26, 202325mitTypeScript
The all-batteries-included GitHub SDK for Browsers, Node.js, and Deno.
Wechat4,325472 days ago64June 30, 2023105apache-2.0Go
WeChat SDK for Go (微信SDK:简单、易用)
Octokit.rb3,78636,2266862 days ago134July 28, 202323mitRuby
Ruby toolkit for the GitHub API
Openshare3,630
5 years ago1October 09, 201792gpl-3.0Objective-C
不用官方SDK,利用社交软件移动客户端(微信/QQ/微博/人人/支付宝)分享/登录/支付。
Laravel Wechat2,809345575 months ago72October 17, 20221mitPHP
微信 SDK for Laravel, 基于 overtrue/wechat
Fosite2,130508821 days ago280December 07, 202236apache-2.0Go
Extensible security first OAuth 2.0 and OpenID Connect SDK for Go.
Macassistant1,592
7 months ago32mitSwift
Google Assistant for macOS!
Auth0.js9506,6662802 days ago245January 25, 20221mitJavaScript
Auth0 headless browser sdk
Dropbox Sdk Python8751,08677a month ago134June 15, 202239mitPython
The Official Dropbox API V2 SDK for Python
Alternatives To React Native Google Sign In
Select To Compare


Alternative Project Comparisons
Readme

React Native Wrapper for Latest Google Sign-In SDK

devfd/react-native-google-signin is not working and is not being maintained anymore (See Issue), so I created this one myself. It uses the latest Google Sign-In SDK.

For LinkedIn SDK, check out joonhocho/react-native-linkedin-sdk

Getting started

Tested with React Native 0.39 and 0.40. Also, see Tested Environments. Let me know if some instructions are missing.

$ react-native install react-native-google-sign-in

Android

Follow Google's official instructions for Android.

Follow everything from the instructions with the following modifications. Some of the following modifications should be done by react-native install automatically. If not, do it yourself:

  • Move google-services.json to {YourApp}/android/app/google-services.json.

  • Add to your {YourApp}/android/settings.gradle:

include ':react-native-google-sign-in'
project(':react-native-google-sign-in').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-sign-in/android')
  • Modify your {YourApp}/android/build.gradle:
dependencies {
    classpath 'com.android.tools.build:gradle:2.2.3' // This may need to be updated to >= 2.2.3.
    classpath 'com.google.gms:google-services:3.0.0' // Add this
}
  • Modify your {YourApp}/android/app/build.gradle:
dependencies {
    compile(project(":react-native-google-sign-in")) { // ADD this
        exclude group: "com.google.android.gms"
    } 
    ...your modules...
    compile "com.google.android.gms:play-services-auth:10.0.1" // Add this, not 9.8.0 (from instructions).
    compile "com.facebook.react:react-native:+"
}

apply plugin: "com.google.gms.google-services" // Add this after dependencies.
  • Modify your {YourApp}/android/app/src/main/java/com/{YourApp}/MainApplication.java:
import com.reactlibrary.googlesignin.RNGoogleSignInPackage; // Add this.

...in your class MainApplication...
        @Override
        protected List<ReactPackage> getPackages() {
            return Arrays.<ReactPackage>asList(
                    new MainReactPackage(),
                    new RNGoogleSignInPackage(), // Add this.
                    ...other packages...
            );
        }

iOS

(prerequisite) Setup Swift Bridging Header

  • Make sure you have a Swift Bridging Header for your project. Here's how to create one if you don't.

Manually download and install Google SignIn SDK (Without CocoaPods)

  • At the time of writing, Google Sign-In SDK 4.1.0 is the latest.

  • Follow Google's official instructions, Install Google SDK WITHOUT CocoaPods. I could not get it working with CocoaPods.

  • It's important to follow every instruction!

  • Make sure to properly add the following frameworks according to the Google's instructions:

    • GoogleSignIn.bundle
    • GoogleSignIn.framework
    • GoogleSignInDependencies.framework
    • SystemConfiguration.framework
    • SafariServices.framework
  • Here are some screenshots that shows proper installations (Refer to ExampleApp):

  • Open up your project in xcode and right click the package.

  • Click Add files to '{YourApp}'.

  • Select to {YourApp}/node_modules/react-native-google-sign-in/ios/RNGoogleSignIn.

  • Click 'Add'.

  • Click your project in the navigator on the left and go to Build Settings.

  • Search for Header Search Paths.

  • Double click on the value column.

  • Add $(SRCROOT)/../node_modules/react-native-google-sign-in/ios/RNGoogleSignIn.

  • Screenshots:

Add to your {YourApp}/ios/{YourApp}/AppDelegate.m:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  // ADD THE FOLLOWING CODE
  NSString *filePath = [[NSBundle mainBundle] pathForResource:@"GoogleService-Info" ofType:@"plist"];
  NSDictionary *plistDict = [NSDictionary dictionaryWithContentsOfFile:filePath];
  [GIDSignIn sharedInstance].clientID = [plistDict objectForKey:@"CLIENT_ID"];
  // ADD THE ABOVE CODE
  ...your code
}

- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
            options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
  // ADD THE FOLLOWING CODE
  BOOL handled = [[GIDSignIn sharedInstance] handleURL:url
                                     sourceApplication:options[UIApplicationOpenURLOptionsSourceApplicationKey]
                                            annotation:options[UIApplicationOpenURLOptionsAnnotationKey]];
  return handled;
  // ADD THE ABOVE CODE
}

- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
  sourceApplication:(NSString *)sourceApplication
         annotation:(id)annotation {
  // ADD THE FOLLOWING CODE
  if ([[GIDSignIn sharedInstance] handleURL:url
                          sourceApplication:sourceApplication
                                 annotation:annotation]) {
    return YES;
  }
  // ADD THE ABOVE CODE
  return YES;
}

Add to your {YourApp}/ios/{YourApp}/AppDelegate.h:

#import <GoogleSignIn/GoogleSignIn.h>

Add to your Swift Bridging Header, {YourApp}/ios/{YourApp}-Bridging-Header.h:

#import <React/RCTBridgeModule.h>
#import <React/RCTViewManager.h>
#import <React/RCTEventEmitter.h>
#import <GoogleSignIn/GoogleSignIn.h>

Or, if you are using RN <= 0.39:

#import "RCTBridgeModule.h"
#import "RCTViewManager.h"
#import "RCTEventEmitter.h"
#import <GoogleSignIn/GoogleSignIn.h>

Usage

import GoogleSignIn from 'react-native-google-sign-in';

// later in your code...
async yourMethod() {
  await GoogleSignIn.configure({
    // iOS
    clientID: 'yourClientID',

    // iOS, Android
    // https://developers.google.com/identity/protocols/googlescopes
    scopes: ['your', 'requested', 'api', 'scopes'],

    // iOS, Android
    // Whether to request email and basic profile.
    // [Default: true]
    // https://developers.google.com/identity/sign-in/ios/api/interface_g_i_d_sign_in.html#a06bf16b507496b126d25ea909d366ba4
    shouldFetchBasicProfile: boolean,

    // iOS
    // https://developers.google.com/identity/sign-in/ios/api/interface_g_i_d_sign_in.html#a486c8df263ca799bea18ebe5430dbdf7
    language: string,

    // iOS
    // https://developers.google.com/identity/sign-in/ios/api/interface_g_i_d_sign_in.html#a0a68c7504c31ab0b728432565f6e33fd
    loginHint: string,

    // iOS, Android
    // https://developers.google.com/identity/sign-in/ios/api/interface_g_i_d_sign_in.html#ae214ed831bb93a06d8d9c3692d5b35f9
    serverClientID: 'yourServerClientID',

    // Android
    // Whether to request server auth code. Make sure to provide `serverClientID`.
    // https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInOptions.Builder.html#requestServerAuthCode(java.lang.String, boolean)
    offlineAccess: boolean,
    
    // Android
    // Whether to force code for refresh token.
    // https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInOptions.Builder.html#requestServerAuthCode(java.lang.String, boolean)
    forceCodeForRefreshToken: boolean,

    // iOS
    // https://developers.google.com/identity/sign-in/ios/api/interface_g_i_d_sign_in.html#a211c074872cd542eda53f696c5eef871
    openIDRealm: string,

    // Android
    // https://developers.google.com/android/reference/com/google/android/gms/auth/api/signin/GoogleSignInOptions.Builder.html#setAccountName(java.lang.String)
    accountName: 'yourServerAccountName',

    // iOS, Android
    // https://developers.google.com/identity/sign-in/ios/api/interface_g_i_d_sign_in.html#a6d85d14588e8bf21a4fcf63e869e3be3
    hostedDomain: 'yourHostedDomain',
  });

  const user = await GoogleSignIn.signInPromise();

  console.log(user);
}

See js/GoogleSignIn.ios.js for supported iOS APIs.

See js/GoogleSignIn.android.js for supported Android APIs.

Tested Environments

I only tested with the following environments:

  • Swift version 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1) / Target: x86_64-apple-macosx10.9
  • Xcode Version 8.2.1 (8C1002)
  • Android Studio 2.2.3 / Build #AI-145.3537739, built on December 2, 2016 / JRE: 1.8.0_112-release-b05 x86_64 / JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o

LICENSE

The MIT License (MIT)

Copyright (c) 2017 Joon Ho Cho

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Popular Sdk Projects
Popular Oauth Projects
Popular Libraries Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Swift
Objective C
Google
Sdk
Oauth
Google Api
Google Login