Update an (native) android app with a new version in Flutter while keeping the database
问题 I have a small application for android written in java, I am rewriting using flutter. Is it possible to transition to the new version by keeping the SQLite database structure intact, including all data? I ran a test, and although I was able to overwrite the application, the data was lost after upgrade. 回答1: If anyone needed it, I was able to read the data from the existing database and write to it using flutter. My previous test had gone wrong because the bases were allocated in separate