after updating the latest version of my app from play store, it wasn’t working. After clearing the cache and data then it worked fine. Why does this happen?
I updated the latest version of my flutter app on android and starting it it showed white screen. After clearing the cache and data of the app then it launched successfully. Serious problem having deleted the data to make the latest version work
2
Answers
If an App update involves significant changes to the code or data structure, there can be compatibility issues between the new version and the existing data stored on the device. This might be the one causing the issue. When you clear the data, all the existing data is deleted and the app starts working because it has no incompatible data to handle. I would recommend revisiting your code.
While Screen can caused by "NULL" value .
what you can do is : run you app in release mode and track the null issue .
hope this will help you