使用 Android 备份服务备份 Cordova 应用程序
Backup Cordova App Using Android Backup Service
Google 的 Android 备份服务 (http://developer.android.com/google/backup/index.html) 是否备份 sqlite 数据库和 localstorage 等混合移动应用程序数据?
我有一个 cordova 应用程序,我希望向其添加备份解决方案。如果此服务与 cordova 应用程序即插即用,那将非常方便。
看来 Android 备份服务不能与 sqlite 数据库即插即用。我在扩展 BackupAgent 部分 http://developer.android.com/guide/topics/data/backup.html#BackupAgent:
下找到了这个
If you have an SQLite database that you want to restore when the user re-installs your application, you need to build a custom BackupAgent that reads the appropriate data during a backup operation, then create your table and insert the data during a restore operation.
据我检查,有一个现成的 backup plugin 可用,应该可以达到目的。
尽管插件开发者声称未经测试,但他成功备份了一次数据。与备份数据相关的插件问题已在 中解决。希望对某人有所帮助
Google 的 Android 备份服务 (http://developer.android.com/google/backup/index.html) 是否备份 sqlite 数据库和 localstorage 等混合移动应用程序数据?
我有一个 cordova 应用程序,我希望向其添加备份解决方案。如果此服务与 cordova 应用程序即插即用,那将非常方便。
看来 Android 备份服务不能与 sqlite 数据库即插即用。我在扩展 BackupAgent 部分 http://developer.android.com/guide/topics/data/backup.html#BackupAgent:
下找到了这个If you have an SQLite database that you want to restore when the user re-installs your application, you need to build a custom BackupAgent that reads the appropriate data during a backup operation, then create your table and insert the data during a restore operation.
据我检查,有一个现成的 backup plugin 可用,应该可以达到目的。
尽管插件开发者声称未经测试,但他成功备份了一次数据。与备份数据相关的插件问题已在