Every single time I try to use this function the app crashes. Here is the function that I have created that is called whenever the user pressed a button.
const onAuth = () => {
Auth.authorize()
.then((status) => console.log('Authorize:', status))
.catch(console.error);
};
I'm using Expo but I've created a development build in order to install the necessary native modules and packages. Been struggling with this all day and I've already tried removing and re-installing the nodule_modules folder. Has anyone else ran into this issue or know how to resolve it?
Every single time I try to use this function the app crashes. Here is the function that I have created that is called whenever the user pressed a button.
I'm using Expo but I've created a development build in order to install the necessary native modules and packages. Been struggling with this all day and I've already tried removing and re-installing the nodule_modules folder. Has anyone else ran into this issue or know how to resolve it?