DreierF / MyTargets

Android app, which helps archers keep track of their training progress
GNU General Public License v2.0
81 stars 44 forks source link

Backups may be corrupt since using Room #374

Closed DreierF closed 5 years ago

DreierF commented 6 years ago

Room uses Write Ahead Logging by default on devices with enough RAM. This means the db file not always up to date and when simply copying the file the database can be corrupted.

I will have to implement a backup function that backups a consistent view on the database or find out how to use the sqlite backup API from Android.

DreierF commented 5 years ago

Should be fixed with 3.1.0 Beta 4