How to update data without update whole app

Hello,

my app should show medical algorithms. Sometimes some little things changing (0.8 instead 0.7 mg). I don’t want to rebuild the app every time. I am thinking about to let the app catch the data from the web and save it local. What would be the best way for this way? SQLite Database? JSON Files?

Storing that kind of data in a SQL Lite table of course makes sense and you should pursue that of course.

Another alternative is to use codepush from Microsoft which can update the whole thing, which can be done at any time.