I'm about to start an app using reactive native(for iOS and android) and would like to know what's the best approach to store unchangeable data (the user will not insert anything into the app, just read the data). Basically I'm going to develop a Portuguese dictionary, so the app will have to load a lot of data every time the user opens the app. Was looking into some options like redux, sqlite, realm etc.. here What are my options for storing data when using React Native? (iOS and Android), but as my app will not be connecting to an api in order to collect the data, but load all the data from the internal device I wonder the best approach for that.
Thanks in advance!