I am trying to communicate between a web application and an Android device in the following way:
Log into my website with a unique id (eg. IMEI)
Send data from android to the web application the user has logged into
Send data from web browser to my application, e.g. with a simple html button
I know of the HttpUrlConnection class and other useful classes but I am unsure how to use them successfully. Let's say I just need to send GPS coordinates from my application to the user logged into my website, and then click a button in my website to send a message to my app.
I'm looking for some recommendations of various technology/methods I should use to help me achieve this!
Thanks!