Hi all,
I’m analysing an app that needs to run of different android devices and the database should be shared among all the devices.
The app will work mainly offline (no internet) and the devices might share the same local network.
I’ve seen solutions that allow to replicate data through clients (mongodb for example) but all require a server on the internet (or on the local network). I would like that one of the android devices could act like the server.
I though in creating some kind of api on the master device and all of the devices would use that same api. This has the advantage that the api would be only one used for all.
Would this be a good approach for b4a? On top of SQLite? Would it be performant?
Any suggestions will be appreciated.
Thanks.