React Native Generate App Hash sans jeu de lecture

// Copy HashCode generated by below code from console it can be used for both dev && prod

import RNOtpVerify from 'react-native-otp-verify';

const getHash = () =>
   RNOtpVerify.getHash()
  .then(console.log)
  .catch(console.log);

getHash()
codeAesthetic