I'm having a lot of troubles to manage to have an online database for my Android app. I'll store some basic data of people with really basic relationships between tables. Also, I'll save some small photos but generally Strings and numbers.
I've downloaded and somehow understood the Google's "mobile backend starter": https://developers.google.com/cloud/samples/mbs/
But in that example they use Google Datastore as a database and I can't find an example on how to do it with Google Cloud SQL. Is there a possiblitity to communicate directly with the database from the Android App or do I have to create PHP webservices as if I would be using a regular MySQL database?
I know it's not going to be as easy as if I would be using SQLite, but I don't know where to start!
Thanks!