react native generate app hash without play console

Solutions on MaxInterview for react native generate app hash without play console by the best coders in the world

showing results for - "react native generate app hash without play console"
Valeria
11 Jan 2021
1// Copy HashCode generated by below code from console it can be used for both dev && prod
2
3import RNOtpVerify from 'react-native-otp-verify';
4
5const getHash = () =>
6   RNOtpVerify.getHash()
7  .then(console.log)
8  .catch(console.log);
9
10getHash()