I am trying to develop a system that involves a:
- server with a database that will handle the system's logic and manipulate data
- an android app that will interact with that server (pull and push data into the server)
- a website that will do the same as the android app, but from a website with slightly different data.
What I thought of is to use SQLite with Apache Tomcat installed on the server and deploy a Grails war file on it. That will take care of the 'website' side of the system. But what about the android app? Can it communicate with Tomcat as well?