My question is stated in the title.
More specifically? In my MySQL database I have a table ‘events’ and each time an event is added/removed I would like to update the points on a Map on my android application.
If possible, a tutorial or code example would also be very much useful as I am still new to and exploring Android.
Appreciated.
You can use C2DM to notify your Android application about database changes on your server:
https://developers.google.com/android/c2dm/
Update
Now a days C2DM is deprecated so you need to use Firebase or GCM(also deprecated)
FCM link
GCM link