Is there a way to make an app compile data from a website? I need to make an app that will display a name, address and some short details – but I need this information to be regularly updated and contributed to by admins, without requiring me to continually add the new information into the app.
I have not done an app of this kind before so any help or assistance would be most appreciated!
Is there a way to make an app compile data from a website? I
Share
Mainly two types of web service available
Use the parsing technique (XML parsing,JSON parsing) depends on the type of web service to parse the data.
The information will be updated automatically in your application when ever some change in the web service happens.
I hope you will get some idea.