I'm creating an APP to list the bus lines and when you click on a line, it will open the time information on the same line. I wonder if you have how to put these strings directly in the APP ?? and, if so, would it be worth it ?? Thanks in advance.
I'm creating an APP to list the bus lines and when you click on a line, it will open the time information on the same line. I wonder if you have how to put these strings directly in the APP ?? and, if so, would it be worth it ?? Thanks in advance.
If the data is fixed you can store it in an sqlite database, and present it to the user.
Now, if the data is dynamic, and provided by a web-service, and you need it to be offline, you should periodically update your database, either using a file, which you generate and distribute to the APPs in some way, or by having them consult the WS or a WS that you create, periodically.
My personal opinion is that it may be worth it, as bus lines do not change every day. I would put an update recommendation in APP, saying that the data is outdated, and when it does, it needs to consult WS to update itself, being optional.
Think that the user always waits for the simplest, if he does not need to do anything, the better for him.