Reputation: 113
I have two applications first one is application1 and second application1+ and how to migrate the data for application1 and application1+ from these respective old versions to the new versions
Upvotes: 3
Views: 86
Reputation: 2052
You should check out on first new app start is there an SQLite database with old format of data. If so - just create new SQLite database, get data from old database and put it into the new database. After that destroy old database file.
Upvotes: 1