Start Development App Result Games Board

2

I want to develop an android platform app that manages the board game matches between my friends. I know almost nothing about android , and I have to start.

One of my questions is about saving the information from the results. So my question is:

How do you work with this storing information ?

Can I use local (client-side) database and distribute the result among other mobile phones? Or is it the right way to have a database in one hosting and focus all the information on it?

I think of building the application using html5 and its new features .

    
asked by anonymous 22.12.2015 / 13:47

1 answer

4

You have to choose which architecture to use.

Native

You can do in java android, and use SQLite to save the information, but SQLite is embedded, if you want to send the data to create an online ranking, besides SQLite you will need a WEB structure that receives the data and serious.

Phonegap

The development with phonegap is much faster than native, to use SQLite to save data even offline, however you can use REST architecture and write everything directly to your server, but nothing prevents you from using internal SQLite as well.

Webresponsivo

This can be totally web, without installing anything in the client's cell, but it can access from several devices, you can save the data with webstorage of the own browser, but also must have mechanism to record the ranking in your web server .

    
22.12.2015 / 14:34