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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-firebase-phone-auth

v1.0.4

Published

Update 15 Jan '18 :

Downloads

189

Readme

Update 15 Jan '18 :

1 -- working on iOS module, latest will be updated soon.. #2 -- will create a video tutorial for integration.

react-native-firebase-phone-auth

Getting started

$ npm install react-native-firebase-phone-auth --save

Mostly automatic installation

$ react-native link react-native-firebase-phone-auth

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-firebase-phone-auth and add RNFirebasePhoneAuth.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNFirebasePhoneAuth.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNFirebasePhoneAuthPackage; to the imports at the top of the file
  • Add new RNFirebasePhoneAuthPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-firebase-phone-auth'
    project(':react-native-firebase-phone-auth').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-firebase-phone-auth/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-firebase-phone-auth')

Usage

  1. Import DeviceEventEmitter in react-native

  2. Import RNFirebasePhoneAuth from 'react-native-firebase-phone-auth'

    import {
        //...
        DeviceEventEmitter,
    } from 'react-native';
    
    import RNFirebasePhoneAuth from 'react-native-firebase-phone-auth';
  3. (Optional) initialize Firebase

        /*
            All info appId, projectId, appKey, databaseURL
            can be found in google-services.json file which you can download
            from firebase console in the website
        */
        RNFirebasePhoneauth.initFirebase(
            appId,
            projectId,
            appKey,
            databaseURL,
            (resp)=>{ console.log(resp) },
            (error)=>{
                //alert(error); console.log(error);
                },
        );
  4. Add event listener for OTPStatus in componentDidMount

        componentDidMount() {
             this.initFirebase(); // if needed
             this.listenToOTP();
         }
    
         listenToOTP(){
    
             DeviceEventEmitter.addListener('OTPStatus', (data) => {
    
                 switch(data.CODE){
                    case "SENT":
                            //SMS Sent
                        break;
                    case "VERIFIED":
                             //SMS Received & read by google play services
                              let authData = {
                                  code : data.OTPNumber,
                                  verificationId : data.verificationId
                              }
                              firebase.auth().signInWithPhoneAuth(
                                 authData,
                                 (success)=>{
                                     //on Successful Login
                                 },
                                 (error)=>{
                                     //on Error
                                 });
                         break;
                    case "ERROR":
                            //error sending SMS
                        break;
                 }
    
                 if(data.CODE == "ERROR")
                     {
                     }
    
             });
    
    
         }
  5. Lastly Send OTP to a phoneNumber

        let phoneNumber = "+61412341234";
        RNFirebasePhoneauth.sendOTP(phoneNumber);

    That's it!!!

// TODO: Android & iOS Firebase link RNFirebasePhoneAuth;

Common Issues on Build / Integration

1 : Failed to resolve: com.google.firebase:firebase-core:X.X.X

follow this link, it worked for me
https://stackoverflow.com/questions/37310188/failed-to-resolve-com-google-firebasefirebase-core9-0-0

2 : Did you setup Firebase for Android & iOS properly??

https://support.google.com/firebase/answer/7000104?hl=en

OR

- ANDROID issue #1 - Add firebase configuration file to the root of the project in android
    https://support.google.com/firebase/answer/7015592

- ANDROID issue #2 - build.gradle config did run perfectly with this configuration

    ```
    compileSdkVersion 25
        buildToolsVersion "25.0.2"

        defaultConfig {
            applicationId "com.ivu"
            minSdkVersion 16
            targetSdkVersion 26


2. iOS