I have a flutter app that store the user login data in SharedPreferences. Once the user enters his details, the details are stored in SharedPreferences and the app communicates to a web API depending on his credentials. The next time the user starts the app he doesn't need to sign in again and directly taken to the home page. Everything worked fine and I uploaded the app on the play store.
After uploading a new version to the store. and the user update the app, if the user is signed in, he should directly see the home page NOT the login screen.
But now after update, he is shown the login screen again!!.
Even if I'm checking for SharedPreferences data on Splash screen to check if the user data is saved or not.