Android App Updating Without Losing Data

前端 未结 3 467
栀梦
栀梦 2021-01-18 04:01

I\'m new to Android development, so I\'m trying to do an app that stores information about a warehouse. However, I\'m afraid that if I perform an update, the user data will

相关标签:
3条回答
  • 2021-01-18 04:30

    If server space isn't an option I would suggest using SharedPreferences. So long as your package name doesn't change all of your data will persist beyond an update.

    0 讨论(0)
  • 2021-01-18 04:32

    When you update the app, SharedPreferences and SQLite will not lose data. So you can store data there. Or you can store data in external storage or in remote server.

    According to section 2 in this article, the serialize class is not safe, if you want to keep the data safe, then you can refer this post for more information. There are some tools that can cipher your database, but it is preferred to cipher your data before inserting into the database.

    0 讨论(0)
  • 2021-01-18 04:48

    1) No data will be lost during an upgrade, only when you uninstall the app. But be very careful if you change the data format between versions, you'll have to implement some migration code.

    2) SQLite data is safe across upgrades, including Android system upgrades. However, Serializable is not. Never use Serializable to persist data reliably in the long term. Use something like JSON, XML or protocol buffers to serialize your objects.

    0 讨论(0)
提交回复
热议问题