Decide and implement a means to save and preserve user information between sessions. Could use third party backend database, or else local native storage. Will eventually need to store user profile, activities and their associated data, including the current status of clocks. Any progressables will also need to be stored. May be worthwhile to compile a list of information to store when this issue is handled.
After reviewing some options, it seems like local MongoDB is the best choice for us. API docs can be found on the front page of github repo. Mongo feels like the right choice here for a few reasons:
The recommended AsyncStorage stores unencrypted data and permanence seems questionable (may be in memory only?).
SQL based solutions are supposedly slower and also don't support javascript objects which could be a useful feature
Realm, a super high quality looking product developed for react native data persistence, is not supported by Expo, which is the client I'm using.
MongoDB reportedly is fast, has encrypted and permanent data storage, and supports JavaScript objects.
Decide and implement a means to save and preserve user information between sessions. Could use third party backend database, or else local native storage. Will eventually need to store user profile, activities and their associated data, including the current status of clocks. Any progressables will also need to be stored. May be worthwhile to compile a list of information to store when this issue is handled.