in IOS I am able to genrate key by using this way
import Aes from "react-native-aes-crypto";
const generateKey = async (password, salt, cost, length) => Aes.pbkdf2(password, salt, cost, length, "sha256");
but in android I am unable to get it
getting this error :"Error generating encryption key: [TypeError: Cannot read property 'pbkdf2' of null]"
react native version :0.74