Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-autodetect-otp

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-autodetect-otp

## Getting started

  • 0.4.9
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

react-native-react-native-otp

Getting started

$ npm install react-native-autodetect-otp --save

follow play servies docs to generate hash

https://developers.google.com/identity/sms-retriever/verify

Manual installation

Android
  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNReactNativeOtpPackage; to the imports at the top of the file
  • Add new RNReactNativeOtpPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-react-native-otp'
    project(':react-native-react-native-otp').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-react-native-otp/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-react-native-otp')
    
  3. add this code to manifest
		<receiver android:name=".SmsBroadcast" android:exported="true">
  	  <intent-filter>
        <action android:name="com.google.android.gms.auth.api.phone.SMS_RETRIEVED"/>
    	</intent-filter>
		</receiver>

Usage

import { NativeEventEmitter, NativeModules } from 'react-native';
import RNReactNativeOtp from 'react-native-autodetect-otp';

const { ModuleWithEmitter } = NativeModules;

const eventEmitter = new NativeEventEmitter(ModuleWithEmitter);

const onReceiveOTP = ({otp}) => {
  console.log(otp);
}

const onOTPTimeout = (event) => {
  console.log(event);
}

class VerifyOTP extends Component{

	async componentDidMount(){
	const result = await 	RNReactNativeOtp.requestSMS();
this.unsubscribe =    ReactNativeOtp.detectorEmitter((result)=>{
            // you will get the sms message here
          })    
          })
}

componentWillUnmout(){
	this.unsubscribe()
	timeoutSubscription.remove();
}
}


result object properties:
result.otp : the sms message
result.status : fail || success

Keywords

FAQs

Package last updated on 25 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc