I am improving an existing app. At the moment we a json file for every language. Since our clients want to adapt the text without publishing a new version to the stores, we will download these language packages from our server.Here comes the big problem.How do we manage these language packages for different versions ?
- should we store them in a database table with a version code ?
- should we use files and each file gets a version code ?
- how about updating a text, should we update old versions also ?
If someone has a nice way to manage these problem, we are happy to hear your ideas.
(We are using react native and a nodejs backend server)