Joseph Huang
Joseph Huang

Reputation: 39

AWS Cognito does not work because of Expo SDK problem

I was working on my React Native project with AWS Amplify, everything went well One day, I tried the AWS Cognito authentification feature I added few weeks ago, and it is not working anymore and I dont understand why. I searched for the error log all over the internet but nothing found. Please help

When I call the Auth.signIn() method, I get the following error: Expo managed workflow support for amazon-cognito-identity-js is only available in SDK 39 and higher.

Upvotes: 2

Views: 923

Answers (1)

Joseph Huang
Joseph Huang

Reputation: 39

Problem solved, I went through many problem during installations but what made it for me was to install the latest version of expo (expo upgrade) (SDK 39 at least) and update all my package using a npm library:

npm install -g npm-check-updates
ncu
ncu -u

Upvotes: 0

Related Questions