2

I assume that automatically transferring OTP code from SMS with the help of Reactjs instruments is not real. But maybe someone knows about possibilities?

I know how to pass code inside apple keyboard intut autoComplete="one-time-code". How can i do it for android (gboard)?

Mushroomator
  • 6,516
  • 1
  • 10
  • 27

2 Answers2

0

I assume you are building a mobile application using React native, in this case, you can find a bunch of libraries that can do the work for you. Take a look at this one and search google for "autofill OTP code in react native" for more results.

Nacim Idjakirene
  • 1,882
  • 8
  • 26
  • 45
0

As of react native version 0.66+

Android: Can use the autocomplete set to sms-otp

iOS: Can use textContentType set to oneTimeCode

the question was already answered here - How to automatically paste the one time code which is received in SMS in react-native text input

Tzachi Elrom
  • 385
  • 1
  • 2
  • 19